Skip to content

Instantly share code, notes, and snippets.

@garretttaco
Last active October 2, 2018 21:02
Show Gist options
  • Save garretttaco/d70cd914e24a68af5ccf63d59666491b to your computer and use it in GitHub Desktop.
Save garretttaco/d70cd914e24a68af5ccf63d59666491b to your computer and use it in GitHub Desktop.
Windows keybindings for VSCode
[
{ "key": "capslock", "command": "extension.vim_escape" },
{
"key": "ctrl+j",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+`",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "ctrl+`",
"command": "workbench.action.terminal.focus",
"when": "!terminalFocus"
},
{ "key": "ctrl+w", "command": "workbench.action.closeActiveEditor" },
{
"key": "ctrl+SHIFT+]",
"command": "workbench.action.terminal.focusNext",
"when": "terminalFocus"
},
{
"key": "ctrl+SHIFT+[",
"command": "workbench.action.terminal.focusPrevious",
"when": "terminalFocus"
},
{
"key": "ctrl+SHIFT+]",
"command": "workbench.action.nextEditor",
"when": "!terminalFocus"
},
{
"key": "ctrl+SHIFT+[",
"command": "workbench.action.previousEditor",
"when": "!terminalFocus"
},
{
"key": "ctrl+d",
"command": "workbench.action.terminal.kill",
"when": "terminalFocus"
},
{
"key": "ctrl+n",
"command": "workbench.action.terminal.new",
"when": "terminalFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment