Skip to content

Instantly share code, notes, and snippets.

@flkc
Created July 31, 2019 05:24
Show Gist options
  • Save flkc/27c9531f4e0e918ab7c8b3c2654cd30f to your computer and use it in GitHub Desktop.
Save flkc/27c9531f4e0e918ab7c8b3c2654cd30f to your computer and use it in GitHub Desktop.
keybinding.json
[
// Vim
{
"key": "ctrl+h",
"command": "workbench.action.focusLeftGroup"
},
{
"key": "ctrl+j",
"command": "workbench.action.focusAboveGroup"
},
{
"key": "ctrl+k",
"command": "workbench.action.focusBelowGroup"
},
{
"key": "ctrl+l",
"command": "workbench.action.focusRightGroup"
},
{
"key": "ctrl+shift+h",
"command": "workbench.action.moveActiveEditorGroupLeft"
},
{
"key": "ctrl+shift+j",
"command": "workbench.action.moveActiveEditorGroupDown"
},
{
"key": "ctrl+shift+j",
"command": "workbench.action.moveActiveEditorGroupUp"
},
{
"key": "ctrl+shift+j",
"command": "workbench.action.moveActiveEditorGroupRight"
},
{
"key": "ctrl+w s",
"command": "workbench.action.splitEditorDown"
},
{
"key": "ctrl+w v",
"command": "workbench.action.splitEditorRight"
},
// General usability
{
"key": "ctrl+m",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+b",
"command": "workbench.action.toggleSidebarVisibility"
},
{
"key": "ctrl+shift+b",
"command": "workbench.action.toggleActivityBarVisibility"
},
{
"key": "ctrl+shift+n",
"command": "workbench.action.quickOpen"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment