IT
[VSCODE] 새파일 / 새폴더 단축키 설정
밍글링글링
2023. 4. 5. 20:28
728x90
ctrl + shift + p 누르면 Open keyboard Shortcuts(JSON) 으로 들어가서 설정한다.
Default가 아니라서, 잘 선택하자.
keybindings.json에서
[
{ "key": "ctrl+n",
"command": "explorer.newFile",
"when": "!editorFocus" },
{ "key": "ctrl+shift+n",
"command": "explorer.newFolder",
"when": "!editorFocus" }
]
728x90