반응형
Notice
Recent Posts
Recent Comments
- Today
- Total
작심삼일
[VSCODE] VSCODE에서 terminal과 file editor 커서 단축키 본문
728x90
반응형
원하는 것
vscode를 쓰면 다 좋은데 terminal창과 editor 창을 마우스 커서로 왔다갔다 하기 너무 귀찮다.
그래서 난 "ctrl + ;"로 keyboard shortcut을 만들어서 사용한다.
방법
ctrl + shift + P
를 누른 후 Open Keyboard Shorcuts (JSON)를 연다.
빈 json파일에 아래 코드를 적어서 저장한다.
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+;",
"command": "terminal.focus",
"when": "editorFocus"
},
{
"key": "ctrl+;",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
}
]
728x90
반응형
'정리 > 기타 설정 등등' 카테고리의 다른 글
[Windows 설치] Ubuntu 지우고 Windows 설치 (0) | 2024.03.05 |
---|---|
[Git] Git repository 변경하기 (0) | 2024.01.28 |
[Sagemaker] AWS Sagemaker에서 git lfs install 하기 (0) | 2023.09.06 |
[Docker] Docker image를 tar로 압축하기 & 압축 풀기 (0) | 2023.08.30 |
[Docker] <none> <none> docker image 지우기 (0) | 2023.06.16 |
Comments