etc
Eclipse 단축키 vs Inteillj 단축키 비교
Grand_J
2022. 6. 23. 14:34
반응형
Eclipse 단축키 vs Inteillj 단축키 비교
설명 | 이클립스 | 인텔리제이 |
창 닫기 | ctrl + w | ctrl + F4 |
창 크게 | ctrl + m | ctrl + shift + F12 |
show intention actions | ctrl + 1 | alt + enter |
메소드 단위로 커서 위치 이동 | alt + ↑, alt + ↓ | |
커서 위치한 line 옮기기 | alt + ↑, alt + ↓ | ctrl + alt + ↑, ctrl + alt + ↓ |
커서 위치한 line 삭제 | ctrl + d | ctrl + y |
커서 위치한 line 복제 | ctrl + alt + ↑, ctrl + alt + ↓ | ctrl + d |
특정 line 번호로 이동 | ctrl + L | ctrl + g |
특정 문자가 들어있는 파일 찾기 | ctrl + h | ctrl + shift + f |
파일 검색 | ctrl + h | double shift |
클래스명 검색 | ctrl + n | |
재실행(redo) | ctrl + y | ctrl + shift + z |
불필요한 import 제거 | ctrl + shift + o | ctrl + alt + o |
call depth 보기 | ctrl + alt + h | ctrl + alt + h |
호출하는 곳 보기 | ctrl + alt + g | ctrl + alt + F7 |
find next | ctrl + k | F3 |
[리팩토링] 변수명 | 메소드명 등 한꺼번에 바꾸기 | alt + shift + r | shift + F6 |
[리팩토링] 메소드 추출(Extract Method) | alt + shift + m | ctrl + alt + m |
선택된 블럭 if, for, while 등으로 감싸기 (surround with) |
ctrl + alt + t | |
Run | ctrl + F11 | shift + F10 |
Stop | shift + F2 | |
[Debug] Run | shift + F9 | |
[Debug] 한스텝씩 진행 | F7 | F8 |
[Debug] 메소드 안으로 들어가면서 진행 | F6 | F7 |
[Debug] 다음 브레이크 포인트까지 넘김 | F8 | F9 |
코드 자동완성 | Ctrl+Space | Basic completion Ctrl+Space Smart completion Ctrl+Shift+Space Statement completion Ctrl+Shift+Enter |
Navigate | F3 | Cmd + B / F4 |
해당 구현체 이동 | ctrl + t | Ctrl + alt + 클릭 |
서버 콘솔창 | Alt + 4 | |
수직 선택 | Alt + 드래그 | |
System.out.println(); | syso + ctrl + space | sout + ctrl + j |
대소문자 변경 | ctrl + shift + x , ctrl + shift + y |
ctrl + shift + u |
주석 | ctrl + /, ctrl + shift + / | ctrl + /, ctrl + shift + / |
검색/바꾸기 | ctrl + f | ctrl + f, ctrl + r |
이름 변경 (Rename) | F2 | Shift + F6 |
출처
https://graykim.tistory.com/92, https://moonsiri.tistory.com/5
끘2134
반응형