Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

VSCode + VSCodeVim undo key rebinding

VSCodeVim uses different undo stack and it annoys me when after undoing all the unsaved changes in vim undo stack, VSCode still shows that file is not saved. For that reason, I'd like to use VSCode's undo stack and map "u" to "Ctrl+z". My keybinding is following:

{
    "key": "u",
    "command": "undo",
    "when": "editorTextFocus && !editorReadonly && vim.active && vim.mode != 'Insert'" 
}

The problem is that even though I specified that it shouldn't work when vim mode is Insert it still undoes the last change and inserts 'u'. Can anyone suggest what is the correct way to rebind undo?

like image 938
Nikita Karpinsky Avatar asked Dec 19 '22 02:12

Nikita Karpinsky


2 Answers

I tried the Doktor OSwaldo's proposal but for some reason it doesn't work. However I managed to find a solution:

"vim.otherModesKeyBindingsNonRecursive": [ 
     { 
         "before": ["u"], 
         "after": [],
         "commands": [
             {
                 "command": "undo", 
                 "args": []
             }
         ] 
     } 
 ]
like image 100
Nikita Karpinsky Avatar answered Dec 21 '22 23:12

Nikita Karpinsky


To piggyback off of dtasev's comment

... the "args": [] doesn't seem to be necessary, and "otherModesKeyBindingsNonRecursive" doesn't exist as an option anymore. I bound mine to normalModeKeyBindings. Also bound <C-r> to redo to use VSCode's redo stack as well

on this answer (and to be explicit with the JSON), this is what I put in my settings.json using vim.normalModeKeyBindingsNonRecursive as opposed to vim.normalModeKeyBindings:

"vim.normalModeKeyBindingsNonRecursive": [
        { 
            "before": ["u"], 
            "after": [],
            "commands": [
                {
                    "command": "undo", 
                    "args": []
                }
            ] 
        }, 
        { 
            "before": ["<C-r>"], 
            "after": [],
            "commands": [
                {
                    "command": "redo", 
                    "args": []
                }
            ] 
        } 
    ]
like image 27
chansonnier Avatar answered Dec 22 '22 01:12

chansonnier