Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Vimperator pass-through/unset <C-Tab> by default

By default is mapped to gt command, which selects next tab. I want to pass-through to Crtl+Tab plugin which does MRU for tabs.

Any idea?

like image 852
user169337 Avatar asked Oct 11 '09 19:10

user169337


2 Answers

Since you want to pass-through, use:

:map <C-Tab> i<C-Tab>

like image 185
Niels Albstein Avatar answered Oct 20 '22 17:10

Niels Albstein


you can map C-Tab to gt command and, maybe, Control-Shift-Tab to gT command.

:inoremap <C-Tab> gt
:inoremap <C-S-Tab> gT

save your vimperatorrc with :mkvimperatorrc!

like image 29
Liv Avatar answered Oct 20 '22 16:10

Liv