Last Updated: February 25, 2016
·
840
· klj613

Tabbing in gvim

Sometimes when I use gvim I want to use tabs like a browser:

nnoremap <C-S-tab> :tabprevious<CR>
nnoremap <C-tab>   :tabnext<CR>
nnoremap <C-t>     :tabnew<CR>
inoremap <C-S-tab> <Esc>:tabprevious<CR>i
inoremap <C-tab>   <Esc>:tabnext<CR>i
inoremap <C-t>     <Esc>:tabnew<CR>

1 Response
Add your response

C-PgUp and C-PgDn works for me out of box without extra mapping.

over 1 year ago ·