DEV Community

Stanislav Berkov
Stanislav Berkov

Posted on

VS Code Vim save when exit INSERT mode

In VS Code settings simple add

"vim.insertModeKeyBindings": [
    {
        "before": ["<C-[>"],
        "after": ["<C-[>"],
        "commands": ["workbench.action.files.save"]
    }
]
Enter fullscreen mode Exit fullscreen mode

Top comments (0)