Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save diehlmitchell/2cdb65ec6650df1311c5685f74bc7bf7 to your computer and use it in GitHub Desktop.
Save diehlmitchell/2cdb65ec6650df1311c5685f74bc7bf7 to your computer and use it in GitHub Desktop.
VSCode keybindings
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+shift+t",
"command": "-workbench.action.reopenClosedEditor"
},
{
"key": "ctrl+shift+t",
"command": "workbench.view.extension.test"
},
{
"key": "ctrl+shift+j",
"command": "-workbench.action.search.toggleQueryDetails",
"when": "inSearchEditor || searchViewletFocus"
},
{
"key": "ctrl+shift+j",
"command": "workbench.action.tasks.runTask"
},
{
"key": "ctrl+i",
"command": "workbench.files.action.showActiveFileInExplorer"
},
{
"key": "ctrl+shift+alt+`",
"command": "workbench.action.quickOpenTerm"
},
{
"key": "ctrl+alt+`",
"command": "workbench.action.terminal.kill"
},
{
"key": "ctrl+k left",
"command": "-workbench.action.moveActiveEditorGroupLeft"
},
{
"key": "ctrl+k right",
"command": "-workbench.action.moveActiveEditorGroupRight"
},
{
"key": "ctrl+k right",
"command": "workbench.action.moveEditorToRightGroup"
},
{
"key": "ctrl+k left",
"command": "workbench.action.moveEditorToLeftGroup"
},
{
"key": "ctrl+k up",
"command": "-workbench.action.moveActiveEditorGroupUp"
},
{
"key": "ctrl+k down",
"command": "-workbench.action.moveActiveEditorGroupDown"
},
{
"key": "ctrl+k up",
"command": "workbench.action.moveEditorToAboveGroup"
},
{
"key": "ctrl+k down",
"command": "workbench.action.moveEditorToBelowGroup"
},
{
"key": "ctrl+-",
"command": "-workbench.action.zoomOut"
},
{
"key": "ctrl+shift+-",
"command": "-workbench.action.zoomOut"
},
{
"key": "ctrl+numpad_add",
"command": "-workbench.action.zoomIn"
},
{
"key": "ctrl+shift+=",
"command": "-workbench.action.zoomIn"
},
{
"key": "ctrl+=",
"command": "-workbench.action.zoomIn"
},
{
"key": "ctrl+numpad_subtract",
"command": "-workbench.action.zoomOut"
},
{
"key": "ctrl+k ctrl+space",
"command": "list.focusParent"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment