아래에 작성된 코드 조합 중 알파벳은 대문자, 소문자 구별이 없다
General
- Command Palette 열기
ctrl + shift + P or F1
- Quick open, go to file 현재 열려있는 파일 빠른 실행
ctrl + P
- 새로운 VScode 실행창 열기
ctrl + shift + N
- VScode 실행창 닫기
ctrl + shift + W
- User Settings
ctrl + ,
- Keyboard Shortcuts
ctrl + K ctrl + S
- cmd에서 VScode 실행
code .
- VScode에서 터미널 열기/닫기
ctrl + J
또는 ctrl +`
**에디터와 터미널 사이의 스위치되지는 않고, 터미널창을 열고 닫는 것**
- VScode에서 새 터미널 실행
ctrl + shift + `
- editor와 모드사이의 전환
F6
**에러코드 확인이던 디버그모드든 터미널이든 가장 최근 사용 중이였던 모드와의 전환 **
- command out
ctrl + /
- line 삭제
ctrl + shift + K
- copy line up/down
shift + alt + ↑ / ↓
- 다수의 코드블럭을 드래그 한 후 들여쓰기 Indentation
tab
- 다수의 코드블럭을 드래그 한 후 내어쓰기 Unindentation
shift + tab
- problems창 열기
ctrl + shift + M
- debug console창 열기
ctrl + shift + Y
- 코드한줄 위아래로 이동시키기
Alt + ↓ or ↑
- Problems(에러코드확인모드) 열기/닫기
ctrl + shift + M
- Terminal: Scroll Up(Line)
1 UpArrow
- Terminal: Scroll Down(Line)
1 DownArrow
- Code Formatting
Shift + Alt + F
Basic editing
Navigation
Search and Replace
Multi-cursor and Selection
Rich Languages Editing
Editor Management
File Management 창관리
- 에디터 닫기
ctrl + F4 or ctrl + W
- 폴더 닫기
ctrl + K F
- 에디터 나누기 - VScode창이 두 개로 나뉘고 그룹으로 에디터를 관리할 수 있게 된다
ctrl + \
- 그룹사이의 이동
ctrl + 1 / 2/ 3
- 현재 활성화된 그룹 안 에디터들 사이의 이동
alt + <- or ->
Display
Debug
Integrated Terminal
Flutter
- Wrap이나 Extract Method
Ctrl + Shift + R
- Fix erros
ctrl + .
# Overview
- 터미널에서 사용 가능한 Commands
- 유용한 단축키
터미널에서 사용 가능한 Commands
flutter create project_name
현재 pwd에서 새로운 flutter project 생성
flutter run
앱의 테스트를 위해 에뮬레이터나 실물기기를 연결한 후 터미널에서 run 가능
유용한 단축키
Ctrl + F5
Hot Reload
Ctrl + Shift + F5
Hot Restart
Shift + F5
Stop
F6
Pause
Ctrl + Shift + R
Wrap이나 Extract Method