Skip to content

Instantly share code, notes, and snippets.

@zwhitchcox
Created December 26, 2019 21:34
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 zwhitchcox/82be19a9ba281737baf01d258914335f to your computer and use it in GitHub Desktop.
Save zwhitchcox/82be19a9ba281737baf01d258914335f to your computer and use it in GitHub Desktop.
keyboard shortcuts vscode
// Place your key bindings in this file to override the defaults
[
{
"key": "ctrl+`",
"command": "workbench.action.terminal.focus",
"when": "editorTextFocus"
},
{
"key": "ctrl+`",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
},
{
"key": "alt+`",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+shift+q",
"command": "workbench.action.toggleMaximizedPanel"
},
{
"key": "ctrl+shift+r",
"command": "workbench.action.tasks.runTask"
},
{
"key": "ctrl+shift+a",
"command": "toggleexcludedfiles.toggle",
"when": "filesExplorerFocus"
},
{
"key": "ctrl+shift+a",
"command": "-toggleexcludedfiles.toggle",
"when": "filesExplorerFocus"
},
{
"key": "ctrl+k ctrl+y",
"command": "workbench.action.openSnippets"
},
{ "key": "ctrl+alt+`", "command": "workbench.action.terminal.focusNext" },
{
"key": "ctrl+shift+alt+`",
"command": "workbench.action.terminal.focusPrevious"
},
{
"key": "ctrl+'",
"command": "workbench.action.debug.continue",
"when": "inDebugMode"
},
{
"key": "f5",
"command": "-workbench.action.debug.continue",
"when": "inDebugMode"
},
{
"key": "ctrl+shift+'",
"command": "workbench.action.debug.stepOver",
"when": "debugState == 'stopped'"
},
{
"key": "f10",
"command": "-workbench.action.debug.stepOver",
"when": "debugState == 'stopped'"
},
{
"key": "ctrl+shift+;",
"command": "workbench.action.debug.stepOut",
"when": "debugState == 'stopped'"
},
{
"key": "shift+f11",
"command": "-workbench.action.debug.stepOut",
"when": "debugState == 'stopped'"
},
{
"key": "ctrl+;",
"command": "workbench.action.debug.stepInto",
"when": "debugState == 'stopped'"
},
{
"key": "f11",
"command": "-workbench.action.debug.stepInto",
"when": "debugState == 'stopped'"
},
{
"key": "ctrl+\\",
"command": "workbench.action.debug.start",
"when": "!inDebugMode"
},
{
"key": "f5",
"command": "-workbench.action.debug.start",
"when": "!inDebugMode"
},
{
"key": "ctrl+'",
"command": "workbench.action.debug.restart",
"when": "inDebugMode"
},
{
"key": "ctrl+shift+f5",
"command": "-workbench.action.debug.restart",
"when": "inDebugMode"
},
{
"key": "ctrl+f10",
"command": "workbench.action.debug.selectandstart"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment