혼자 적어보는 노트

[VSCode] 새 파일, 새 폴더 단축키 설정 본문

기타

[VSCode] 새 파일, 새 폴더 단축키 설정

jinist 2022. 5. 31. 00:06

 

 

ctrl + shift + p 단축키를 사용 후

Open keyboard shortcuts (JSON) 으로 들어간다.

* Default 아님

 

아래와 같이 작성.

[
  {
    "key": "ctrl+n",
    "command": "explorer.newFile",
    "when": "explorerViewletFocus"
  },
  {
    "key": "ctrl+f",
    "command": "explorer.newFolder",
    "when": "explorerViewletFocus"
  }
]

* explorer에 focus가 되어있을 때만 해당 단축키가 활성화 된다.

'기타' 카테고리의 다른 글

정규 표현식 공백 및 특수문자 체크  (0) 2022.09.04
프로그래머스 데브코스 TIL - Day 52  (0) 2022.05.31
Storybook 사용해 보기  (0) 2022.05.27
Babel 설정  (0) 2022.05.15
ESlint vue/multi-word-component-names 옵션 끄기  (0) 2022.05.13
Comments