Created
August 26, 2021 07:07
-
-
Save Boztown/9bd6630576d069ff171015dc7178aff4 to your computer and use it in GitHub Desktop.
VSCode Vim 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 defaults | |
| [ | |
| { | |
| "key": "cmd+enter", | |
| "command": "renameFile", | |
| "when": "explorerViewletVisible && filesExplorerFocus" | |
| }, | |
| { | |
| "key": "enter", | |
| "command": "-renameFile", | |
| "when": "explorerViewletVisible && filesExplorerFocus" | |
| }, | |
| { | |
| "key": "enter", | |
| "command": "list.select", | |
| "when": "listFocus && !inputFocus" | |
| }, | |
| { | |
| "key": "ctrl+h", | |
| "command": "workbench.action.navigateLeft" | |
| }, | |
| { | |
| "key": "ctrl+l", | |
| "command": "workbench.action.navigateRight" | |
| }, | |
| { | |
| "key": "ctrl+k", | |
| "command": "workbench.action.navigateUp" | |
| }, | |
| { | |
| "key": "ctrl+j", | |
| "command": "workbench.action.navigateDown" | |
| } | |
| ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment