I'd like to map Ctrl-TAB
to gt
in Vim so that I can switch tabs with one keystroke.
I tried...
nmap <C-T> gt
nmap <C-Tab> gt
nmap <C-TAB> gt
That didn't work. How do you say "the tab key" in Vimese?
I'd like to map Ctrl-TAB
to gt
in Vim so that I can switch tabs with one keystroke.
I tried...
nmap <C-T> gt
nmap <C-Tab> gt
nmap <C-TAB> gt
That didn't work. How do you say "the tab key" in Vimese?
This worked for me in MacVim
:map <C-Tab> gt
It works in command mode. Not in Edit mode.
It does not work in vim in my terminal.
It can be mapped in gvim, but terminals don't see a difference between <Tab>
and <C-Tab>
.