Created
February 11, 2023 01:15
-
-
Save stefanwatt/b5cfeda5c222f572beb55edec9d508ec to your computer and use it in GitHub Desktop.
vscodvim keybindings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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