여니의 프로그래밍 study/Spring & Spring Boot

[IntelliJ] 단축키 모음

여니's 2022. 1. 10. 21:14

 

자동완성 Command + Enter
test class 만들기 command + shift + T
생성자 자동 생성 (generate -> constructor) control + Enter
(); 자동 완성하기 command + shift + Enter
변수명 자동 완성 new 생성자() 작성 후 커서를 맨 앞으로 옮긴 다음
command + option + v
  println -> sout
soutv (변수명 포함 출력문)
soutm (메소드 포함 출력문)
main -> psvm
for 문 자동생성 -> iter
해당 생성자 코드로 바로 옮겨지는 단축키 command + B
위치 상관없이 엔터 shift + Enter
클래스 찾기 command + o
과거 히스토리 보기 command + E 
Extract Method command + option + M
패키지 가져오기 (import) Option + Enter
Assertions.assertThat().. -> assertThat()...로 간결해짐 option + Enter  -> Add on-demand... 클릭
   

 

 

 

https://mangkyu.tistory.com/139