Skip to content

Instantly share code, notes, and snippets.

@wsmelton
Created August 2, 2020 03:16
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/31ab0ccf753ecfe09252a5b711699449 to your computer and use it in GitHub Desktop.
Save wsmelton/31ab0ccf753ecfe09252a5b711699449 to your computer and use it in GitHub Desktop.
Keybindings 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+f9",
"command": "git.sync"
},
{
"key": "ctrl+shift+=",
"command": "editor.action.fontZoomIn"
},
{
"key": "ctrl+shift+=",
"command": "-workbench.action.zoomIn"
},
{
"key": "ctrl+shift+-",
"command": "editor.action.fontZoomOut"
},
{
"key": "ctrl+shift+-",
"command": "-workbench.action.zoomOut"
},
{
"key": "ctrl+alt+=",
"command": "editor.action.fontZoomReset"
},
{
"key": "ctrl+alt+s",
"command": "workbench.action.toggleScreencastMode"
},
{
"key": "ctrl+shift+t",
"command": "shellLauncher.launch"
},
{
"key": "ctrl+shift+p",
"command": "-workbench.action.quickOpenNavigatePreviousInFilePicker",
"when": "inFilesPicker && inQuickOpen"
},
{
"key": "shift+alt+g",
"command": "git.commit"
},
{
"key": "f8",
"command": "PowerShell.RunSelection",
"when": "editorTextFocus && editorLangId == 'powershell'"
},
{
"key": "shift+alt+p",
"command": "git.push"
},
{
"key": "shift+alt+r",
"command": "extension.runAsQuery"
},
{
"key": "shift+alt+e",
"command": "extension.runSelectedAsQuery"
},
{
"key": "shift+alt+v",
"command": "timeline.focus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment