단축키를 이용해서 어떤걸 해보고 싶은데 그럴때마다 일일이 찾는게 번거로워서
잘 정리되신 분의 포스팅을 퍼 왔다.
이 외에 알게 되는게 있으면 추가로 포스팅 할 예정.
이클립스는…언제 쓰게 될지 모르니 참고용으로 허허..
설명 | 이클립스 | Intellij |
---|---|---|
창 닫기 | ctrl + w | ctrl + F4 |
창 크게하기 | ctrl + m | ctrl + shift + F12 |
import 하기 | ctrl + 1 | alt + enter |
method 단위로 커서 위치 이동 | 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 | |
실행취소(undo) | ctrl + z | ctrl + z |
재실행(redo) | ctrl + y | ctrl + shift + z |
setting 창 열기 | ctrl + alt + s | |
메소드 속으로 들어가기 | F3 | F4 또는 ctrl + b |
불필요한 import 제거 | ctrl + shift + o | ctrl + alt + o |
call depth 보기 | ctrl + alt + h | ctrl + alt + h |
호출하는 곳 보기 | ctrl + alt + g | ctrl + alt + F7 |
find한 것 다음으로 넘기기 | 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 |
[Debug] Run | shift + F9 | |
[Debug] 한스텝씩 진행 | F7 | F8 |
[Debug] 메소드 안으로 들어가면서 진행 | F6 | F7 |
[Debug] 다음 브레이크 포인트까지 넘김 | F8 | F9 |
에러 지점 바로 가기 | shift + F2 | |
특정 인터페이스를 구현하는 클래스 찾기 | ctrl + t | ctrl + alt + b |
코드 자동 정렬하기 | ctrl + shift + f | ctrl + alt + l(엘) |
Reference
How to find which classes implement a particular interface in Eclipse?
Comments