Hi Takuya,
I love using the ; key for : in Vim because it’s much faster for commands. How can I map ; to : in Vim mode on Inkdrop?
Thank you.
Hi Takuya,
I love using the ; key for : in Vim because it’s much faster for commands. How can I map ; to : in Vim mode on Inkdrop?
Thank you.
Hi Beary,
':'
is mapped to the command vim:ex-command
here.
So, you can simply add a keymap for ';'
to the command like so:
".CodeMirror.vim-mode:not(.insert-mode):not(.key-buffering) textarea": {
";": "vim:ex-command"
},