vscode 에서 새 파일을 만드는 단축키는 cmd+n
이다. 그런데 이건 그냥 새 파일을 만들어 준다.
EXPLORER 창에서 아이콘을 클릭하여 새 파일이나 새 폴더를 만들면 선택된 폴더 하위로 생성해주는데 이 것과 동일한 기능을 하는 단축키를 아래와 같이 만들 수 있다.
cmd+shift+p
로 Preferences: Open Keyboard Shortcuts (JSON)
를 열어서 아래와 같이 작성.
[
{
"key": "cmd+n",
"command": "explorer.newFile",
"when": "explorerViewletFocus"
},
{
"key": "cmd+shift+n",
"command": "explorer.newFolder",
"when": "explorerViewletFocus"
}
]
끝.