Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't seem to find a predefined keyboard shortcut for switching between open tabs in Gvim. What is it, and if there is none, how can I define one?

share|improve this question

4 Answers

up vote 21 down vote accepted

Use gt and gT commands.

:tabn and :tabp also work.

Read :help gt and read that section completely. There are many useful commands explained there.

share|improve this answer
2  
Help is powerful stuff indeed – Arnis L. Jul 26 '11 at 15:20

Press gt to switch tabs. Also - 1gt 2gt to open 1st, 2nd... tab.

share|improve this answer

I have these mappings in my vimrc:

map <C-Left> <Esc>:tabprev<CR>
map <C-Right> <Esc>:tabnext<CR>
map <C-n> <Esc>:tabnew

I'm by no means a pro vim'er, but it works for me so I thought I'd share :) Control+Right for next tab, Control+Left for previous, Control+n to open a new tab (left out the so you can specify the path to open in the new tab).

share|improve this answer
I like this. Thanks for sharing! – BenGC Jul 27 '11 at 15:24
C-<PageUp>
C-<PageDown>

These are predefined, altaught not very practical, as on most keyboards Page keys are placed in the corners, far from 'natural' hands position.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.