유용한 단축키를 정리합니다.
이모지 단축키
- 편집 > 이모티콘
- Control-Command-스페이스
VSCode 단축키 (Mac 단축키)
cmd + d
(ctrl
+d
) : 같은 파일내 단어 찾기option + cmd + i
(F12
) : 크롬 디버그ctrl + space
: 파일에서 프로퍼티 자동완성cmd + shift + p
: 페이지 셋업cmd + p
: 파일 찾기cmd + j
: 터미널 창 열기
Snippets 활용
:html:5
html 자동완성
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Document</title>
</head>
<body></body>
</html>
:rfc
리액트 템플릿 자동완성
Snippets 만들기
Code > 기본설정 > 사용자 코드조각 구성
마크다운 문서에 필요한 기본 포맷을 아래와 같이 만들어둔다.
"Print to console": {
"prefix": "mb",
"body": [
"---",
"title: ${0}",
"date: $CURRENT_YEAR.$CURRENT_MONTH.$CURRENT_DATE",
"category: ${2}",
"coverImage: 'images/cover/${3}'",
"slug: ${4}",
"---"
],
"description": "markdown blog"
}
mb
+ Control-스페이스
페이지 셋업에서 설정하기
: json 파일열기 => open settings (json)
// settings.json
{
// set prettier
"editor.formatOnSave": true,
"[javascript]": {
"editor.formatOnSave": true
},
"editor.codeActionsOnSave": {
// For ESLint
"source.fixAll.eslint": false
},
"files.autoSave": "onFocusChange",
"editor.fontSize": 13,
// set eslint
"eslint.alwaysShowStatus": true,
"eslint.workingDirectories": [{ "mode": "auto" }],
"eslint.validate": ["javascript", "typescript"]
}
커맨드 단축키 지정하기
- 터미널에서
code .
로 프로젝트를 열기 => Shell Command - 프로젝트 매니저에 추가하기 => Project Manager: Save Project