정보 공유: VSCode Focus Shortcut

최대 1 분 소요

VSCode Focus Shortcut

// Place your key bindings in this file to override the defaults
[
    {
        "key":     "ctrl+2",
        "command": "workbench.action.terminal.focus"
    },
    {
        "key":     "ctrl+2",
        "command": "workbench.action.focusActiveEditorGroup",
        "when":    "terminalFocus"
    }
    { // Unbind unconditional default
        "key": "ctrl+1",
        "command": "-workbench.action.focusSideBar"
      },
      { // to ←
        "key": "ctrl+1",
        "when": "!sideBarFocus",
        "command": "workbench.action.focusSideBar"
      },
      { // from →
        "key": "ctrl+1",
        "when": "sideBarFocus",
        "command": "workbench.action.focusActiveEditorGroup"
      },
]

댓글남기기