Skip to content

Instantly share code, notes, and snippets.

@Boztown
Created August 26, 2021 07:07
Show Gist options
  • Select an option

  • Save Boztown/9bd6630576d069ff171015dc7178aff4 to your computer and use it in GitHub Desktop.

Select an option

Save Boztown/9bd6630576d069ff171015dc7178aff4 to your computer and use it in GitHub Desktop.
VSCode Vim Keybindings
// 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