Skip to content

Instantly share code, notes, and snippets.

@stefanwatt
Created February 11, 2023 01:15
Show Gist options
  • Save stefanwatt/b5cfeda5c222f572beb55edec9d508ec to your computer and use it in GitHub Desktop.
Save stefanwatt/b5cfeda5c222f572beb55edec9d508ec to your computer and use it in GitHub Desktop.
vscodvim keybindings
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "shift+right",
"command": "workbench.action.nextEditor",
"when": "!editorFocus || inputFocus && vim.mode == 'Normal'"
},
{
"key": "ctrl+pagedown",
"command": "-workbench.action.nextEditor"
},
{
"key": "shift+left",
"command": "workbench.action.previousEditor",
"when": "!editorFocus || inputFocus && vim.mode == 'Normal'"
},
{
"key": "ctrl+pageup",
"command": "-workbench.action.previousEditor"
},
{
"key": "ctrl+q",
"command": "workbench.action.closeSidebar",
"when": "sideBarFocus"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment