Skip to content

Instantly share code, notes, and snippets.

@oukayuka
Last active April 26, 2018 06:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oukayuka/e7b8a23f8c7179db93355c3c33c355a2 to your computer and use it in GitHub Desktop.
Save oukayuka/e7b8a23f8c7179db93355c3c33c355a2 to your computer and use it in GitHub Desktop.
VSCode Vim plugin undo / redo settings
[
{
"key": "ctrl+]",
"command": "extension.vim_escape",
"when": "editorTextFocus"
},
{
"key": "ctrl+e",
"command": "workbench.action.toggleSidebarVisibility"
},
{
"key": "ctrl+l",
"command": "workbench.action.focusNextGroup"
},
{
"key": "ctrl+h",
"command": "workbench.action.focusPreviousGroup"
},
{
"key": "cmd+r",
"command": "redo",
"when": "editorTextFocus && !editorReadonly"
}
]
{
"vim.otherModesKeyBindingsNonRecursive": [
{
"before": ["u"],
"after": [],
"commands": [{ "command": "undo" }]
}
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment