작심삼일

[VSCODE] VSCODE에서 terminal과 file editor 커서 단축키 본문

정리/기타 설정 등등

[VSCODE] VSCODE에서 terminal과 file editor 커서 단축키

yun_s 2024. 3. 8. 18:48
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
반응형
Comments