Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 다른컴퓨터에서 git사용
- 폼 입력 바인딩
- vue mixin
- vue 지역 컴포넌트
- Vue
- 프로그래머스 데브코스
- KDT 프로그래머스 데브코스 프론트엔드
- SCSS use
- 리액트
- flex
- 프로그래머스 K_Digital Training
- netlify redirect
- 이벤트 수식어
- 고양이 사진 검색기
- vuex map
- 프로그래머스 데브코스 프론트엔드
- intersection opserver
- Spacer
- KDT 프로그래머스
- 프로그래머스 프론트엔드 데브코스
- nextjs사용법
- SCSS extend
- git 같은계정 다른 컴퓨터
- react next
- SCSS import
- SCSS forward
- 쌓임맥락
- vue 이벤트 수신
- 리스트 렌더링
- postcss
Archives
- Today
- Total
혼자 적어보는 노트
[VSCode] 새 파일, 새 폴더 단축키 설정 본문
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