Skip to content

Instantly share code, notes, and snippets.

@wsmelton
Created July 30, 2018 14:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wsmelton/27766fd0356a4f4f92d87238a820cb9b to your computer and use it in GitHub Desktop.
Save wsmelton/27766fd0356a4f4f92d87238a820cb9b to your computer and use it in GitHub Desktop.
My key bindings for VS Code
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "alt+up",
"command": "workbench.action.navigateUp"
},
{
"key": "alt+down",
"command": "workbench.action.navigateDown"
},
{
"key": "ctrl+shift+i",
"command": "workbench.action.terminal.focus",
"when": "!terminalFocus"
},
{
"key": "ctrl+shift+i",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "alt+right",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+shift+r",
"command": "workbench.action.toggleMaximizedPanel"
},
{
"key": "ctrl+r",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+`",
"command": "-workbench.action.terminal.toggleTerminal"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment