Skip to content

Instantly share code, notes, and snippets.

@harazdovskiy
Created November 3, 2018 12:27
Show Gist options
  • Save harazdovskiy/6264d7ef0e0c9f5fabd0e81bb32216bd to your computer and use it in GitHub Desktop.
Save harazdovskiy/6264d7ef0e0c9f5fabd0e81bb32216bd to your computer and use it in GitHub Desktop.
VSCode personal keybindings
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+shift+g g",
"command": "-workbench.view.scm",
"when": "gitlens:enabled && gitlens:keymap == 'chorded'"
},
{
"key": "shift+cmd+2",
"command": "workbench.action.nextEditorInGroup"
},
{
"key": "ctrl+cmd+2",
"command": "-workbench.action.moveEditorToSecondGroup"
},
{
"key": "cmd+f11",
"command": "workbench.action.toggleZenMode"
},
{
"key": "cmd+k z",
"command": "-workbench.action.toggleZenMode"
},
{
"key": "ctrl+shift+up",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+shift+down",
"command": "workbench.action.terminal.focusPrevious"
},
{
"key": "ctrl+shift+backspace",
"command": "workbench.action.terminal.kill"
},
{
"key": "ctrl+shift+d",
"command": "workbench.view.extension.dockerView"
},
{
"key": "ctrl+t",
"command": "workbench.action.terminal.focus"
},
{
"key": "shift+cmd+a shift+cmd+down",
"command": "workbench.action.splitEditorDown"
},
{
"key": "shift+cmd+a shift+cmd+left",
"command": "workbench.action.splitEditorLeft"
},
{
"key": "shift+cmd+a shift+cmd+right",
"command": "workbench.action.splitEditorRight"
},
{
"key": "shift+cmd+a shift+cmd+up",
"command": "workbench.action.splitEditorUp"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment