package 자바의정석; public class 단축키 { public static void main(String[] args) { // ctrl + shift + L 단축키 전체 목록보기 // ctrl + + , - 폰트 크기 증가/감소 // ctrl + D 한줄삭제 // ctrl + alt + down 행단위 복사 // alt + shift + A 멀티칼럼 복사 // alt + UP, DOWN 행단위 이동 // ctrl + i 자동들여쓰기 // ctrl + / 한줄주석(토글) // ctrl + space 자동완성 System.out.println(); }