vsCode

    VSCODE 단축키

    VSCODE 단축키

    cmd+k+s 단축키를 사용하면 현재 설정된 단축키를 확인할 수 있다. 아래는 그때그때 기억하기 위해! 적는 단축키 맥 단축키 윈도우 단축키 명령 cmd+c ctrl+c 행 복사 cmd+x ctrl+x 행 삭제 cmd+shift+k ctrl+shift+k 행 삭제 shift+opt+↓ shift+alt+↓ 위에 행 복사 shift+opt+↑ shift+alt+↑ 아래에 행 복사 opt+↑ alt+↑ 행 위로 이동 opt+↓ alt+↓ 행 아래 이동 cmd+enter ctrl+enter 아래에 행 삽입 cmd+shift+enter ctrl+shift+enter 위에 행 삽입 cmd+shift+p ctrl+shift+p 모든 명령 보기 cmd+. ctrl+. 빠른 수정 cmd+p ctrl+p 파일 열기

    VSCODE Open Keyboard Shortcuts으로 새파일/새폴더 단축키 설정하기

    VSCODE Open Keyboard Shortcuts으로 새파일/새폴더 단축키 설정하기

    1. cmd + shift + p (Show all commands)를 누르고 Open Keyboard Shortcuts (JSON)을 선택한다. (윈도우는 ctrl+shift+p이다) Open Default Keyboard Shortcuts을 선택하지 않게 주의한다. 2. keybindings.json 파일에 아래 내용을 추가한다. mac [ { "key": "cmd+n", "command": "explorer.newFile", "when": "!editorFocus" }, { "key": "cmd+shift+n", "command": "explorer.newFolder", "when": "!editorFocus" } ] windows [ { "key": "ctrl+n", "command": "expl..