Y
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
mblood
3382 days ago
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.
link
flukus
3382 days ago
quite a bit more verbose than "nnoremap ; :".
link