본문 바로가기
카테고리 없음

Vscode key binding

by LibRat 2024. 10. 29.
반응형

vscode -> file -> preferences -> keyboard shortcuts -> open keyboard shortcuts

 

// Place your key bindings in this file to override the defaults
[
  {
    "key": "ctrl+k",
    "command": "workbench.action.focusActiveEditorGroup",
    "when": "terminalFocus"
  },
  {
    "key": "ctrl+k",
    "command": "workbench.action.terminal.focus",
    "when": "!terminalFocus"
  }
]
반응형