단축키
파일 > 기본 설정 > 바로 가기 키 에서 현재 단축키를 볼 수 있고, keybindings.json에서 편집할 수 있다.
자주 사용하는 단축키
키 | 명령 | 명령ID |
ctrl+x | 행 삭제 (빈 선택) | editor.action.clipboardCutAction |
ctrl+shitf+k | 행 삭제 | editor.action.deleteLines |
ctrl+c | 행 복사 (빈 선택) | editor.action.clipboardCopyActoin |
ctrl+Enter | 아래에 행 삽입 | editor.action.insertLineAfter |
ctrl+shift+Enter | 위에 행 삽입 | editor.action.insertLineBefore |
ctrl+u | 마지막 커서 작업 취소 | cursorUndo |
ctrl+i | 현재 행 선택 | expandLineSelection |
ctrl+] | 라인 들여쓰기 | editor.action.indentLines |
ctrl+[ | 라인 내어쓰기 | editor.action.outdentLines |
ctrl+End | 파일 끝으로 이동 | cursorBottom |
ctrl+Home | 파일 시작으로 이동 | cursorTop |
ctrl+/ | 주석 토글 | editor.action.commentLine |
ctrl+s | 저장 | workbench.action.files.save |
ctrl+shift+s | 다른 이름으로 저장 | workbench.action.files.saveAs |
ctrl+, | 사용자 설정 열기 | workbench.action.openGlobalSettings |
ctrl+k ctrl+s | 키보드 단축키 열기 | workbench.action.openGlobalKeybindings |
ctrl+f2 | 현재 단어의 모든 항목 선택 | editor.action.changeAll |