동작 윈도우 맥 단어 선택, 다음 단어 선택 ctrl + D command + D 현재 단어 모두 선택 ctrl + F2 다중 커서 셀렉션 ctrl + alt + ↓|↑ command + option + ↓|↑ 행 삭제 ctrl + shift + k command + shift + k 위, 아래 행 복사 alt + shift + ↓|↑ option + shift + ↓|↑ 코드 행 위, 아래로 이동 alt + ↑|↓ option + ↑|↓ 주석(토글) ctrl + / command + / 이동할 줄 번호로 이동 ctrl + G ctrl + G 사이드바 토글 ctrl + B command + B 셋팅 ctrl + , command + , 편집기 분할 ctrl + \ command + \ 단어 줄바꿈(토글)..
먼저 vscoe 의 기본 설정 json 에서 아래의 내용 추가한다 "scss.validate": false, "editor.quickSuggestions": { "strings": true }, "editor.autoClosingQuotes": "always", "tailwindCSS.experimental.classRegex": [ "tw`([^`]*)", // tw`...` "tw=\"([^\"]*)", // "tw={\"([^\"}]*)", // "tw\\.\\w+`([^`]*)", // tw.xxx`...` "tw\\(.*?\\)`([^`]*)" // tw(Component)`...` ], "tailwindCSS.includeLanguages": { "typescript": "javascript"..
[ { "name": "aws.host.com", "host": "aws.host.com", "port": 22, "type": "sftp", "username": "ubuntu", "privateKey": "C:\\awskey\\privatkey.pem", "path": "/var/www/html", "autosave": true, "confirm": true } ] [ { "name": "aws.host.com", "host": "aws.host.com", "port": 22, "type": "sftp", "username": "ubuntu", "privateKey": "C:\\awskey\\privatkey.pem", "path": "/var/www/html", "autosave": true, "c..
자바스크립트 사용시 console.log 숨쉬듯이 쓰기때문에 파일형태가 아니라 VSCode 프로그램에 내장되어있는 기본설정을 통해 고정적으로 입력시켜서 사용하면 편하다. 현재 [ cl + 탭키 ] 입력시 class 가 표기되는데 class 보다는 console.log 사용량이 압도적으로 많으므로 [ cl + 탭키 ] 입력시 console.log( 커서위치 ); 가 되도록 설정을 변경(추가) 해보겠다. 2020.07.10 - 내용추가 : alert, return false, return true 파일 > 기본 설정 > 사용자 코드 조각 javascript.json 파일을 찾아서 선택 아래의 코드를 붙여넣고 저장 { // Place your snippets for javascript here. Each sn..
# ctrl + shift + p > Open User Settings Git 입력 "Git: Path 항목" 을 찾아서 아래와 같이 Git 항목을 수정 { "workbench.iconTheme": "material-icon-theme", "terminal.external.windowsExec": "C:\\Windows\\System32\\cmd.exe", "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", "git.path": "C:\\rogram Files\\Git\\bin\\git.exe" } 보기 > 터미널 혹은 Ctrl + ` + 버튼 누른다