초보 개발자

이클립스 단축기 본문

이것 저것

이클립스 단축기

taehyeki 2022. 7. 18. 21:18

https://www.youtube.com/watch?v=Ogd_kxyqRSw 

 

 

ctrl + + : 화면 확대

ctrl + - : 화면 축소

 

sysout + ctrl + space bar : System.out.println() 자동완성

 

ctrl + F11 : Run

 

if + ctrl + space bar + enter : if 블록자동완성

ifelse + ctrl + space bar + enter : if 블록자동완성

 

alt + / : 변수자동완성

int abcdefg = 1;

이 상황에서 abcdefg변수를 한번에 가져오고 싶은 경우 a까지만 적고 alt + /

 

System.out.println(a); -> System.out.println(abcdefg);

 

커맨드 변경하려면 window -> preferences -> searching 'key' -> General.Editors.Keys 에서

원하는 커맨드를 찾은 뒤 변경 가능

 

ctrl + alt + down : 현재 행 아래 행으로 복사

 

alt  + up : 해당 행을 위로 이동

alt + down : 해당 행을 아래로 이동

 

shift + up : 해당 행부터 위로 드래그

shift + down : 해당 행부터 아래로 드래그

 

alt + shift + m : 함수생성

alt + shift + r : 해당 변수를 전체 코드에서 한번에 변경이 되도록 커서 지정

 

ctrl + /  : 주석처리

 

ctrl + shift + m : 해당 모듈 자동 import해옴 

ctrl + shift + O : 전체 모듈 자동 import해옴

 

ctrl + 1 : 해당 값 변수화 및 상수화 가능

ctrl + shift + x : 해당 문자 대문자 // 난 안됨..

ctrl + shift + y : 해당 문자 소문자 // 난 안됨.. 

ctrl + shift + f : 해당 행 포맷팅 ( 정렬됨 )  

ctrl + a : 전체선택

ctrl + i : 해당 행 들여쓰기 

 

alt + shift + a : 여러줄 선택

'이것 저것' 카테고리의 다른 글

this란 무엇인가?  (0) 2022.06.21
JS파일 가져오기 defer, async  (0) 2022.06.12
DOM? BOM? ( feat. CSSOM )  (0) 2022.06.12
AWS EC2 Ubuntu 18.04 NODE 설치 하기 16.x버전  (0) 2022.05.23
pm2로 node 배포!  (0) 2022.05.15