Hacker News new | ask | show | jobs
by flukus 3382 days ago
Does it support remapping? I always have ';' and ':' swapped and very few emulators support this. (VSVim does now).
1 comments

Yes. It has support for mapping keys in any mode to any action. For instance:

    "vim.otherModesKeyBindingsNonRecursive": [{
       "before": [";"],
       "after": [":"]
    }]
This, placed in settings.json, does what you requested.
quite a bit more verbose than "nnoremap ; :".