I tried
inoremap <c-`> <c-w>w
and various combination, but nothing seems to work. Is cntrl-` already mapped?
Using Lubuntu 64 bit 16.04 : lxterminal Attempted cntrl-v cntrl-` to find the character but nothing shows up.
FYI: I am attempting to make sure I can do same thing with my VSCode editor.
In a typical terminal, control` is an ASCII
NUL
(zero), which vim will not map. Usingcat -v
to make the result visible, you'd likely seewhich is a single character...
You'd have the same behavior for a few other keys which typically produce a
NUL
, e.g., controlspace, or control@
(really!)