frank wang wrote:
I am new to the list. Could anyone help me to map ctrl+[ to tag pop
command? Vim default is ctrl+t. Also, how can I found which keys have
been used by vim?
Thanks
Frank
Beware! In Vim (or in any program which uses "cooked" keyboard input), <Esc>
and Ctrl-[ are indistinguishable from each other. If you map <C-[> to
something, <Esc> will be mapped to the same thing, and you will lose the
functionality of the Esc key (unless you further remap something else to it,
with no remapping). To map ü (u-umlaut, or u with two dots above, assuming
your keyboard has it) to Ctrl-T use:
:map ü <C-T>
To find which keys are used, ":help quickref.txt" might be one of the places
where to look.
Best regards,
Tony.