본문 바로가기

CSEE 관련 잡다 정보

VS Code 터미널과 코드 영역 간의 단축키 이동 설정 (Ctrl + ;, Window)

 

VS Code : Ctrl + shift + P

Open Keyboard Shortcuts (JSON) 선택

 

다음  작성 

[
    {
      "key": "Ctrl+;",
      "command": "terminal.focus",
      "when": "editorFocus"
    },
    {
      "key": "Ctrl+;",
      "command": "workbench.action.focusActiveEditorGroup",
      "when": "terminalFocus"
    }
  ]
 

 

저장