For example, gvim defines ctrl+; as the shortcut key to open or hide NERDTree, as follows:
map <C-;> :NERDTreeToggle<CR>
is not recognized by gvim. Please give me some guidance from those who know it. Thank you very much.
The semicolon is written as map <c-;>是没有问题的不过,vim无法捕捉到<c-;>,将用户输入的ctrl+;识别成;
map <c-;>
<c-;>
ctrl+;
;
The semicolon is written as
map <c-;>
是没有问题的不过,vim无法捕捉到
<c-;>
,将用户输入的ctrl+;
识别成;