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

I've just started using the NERDTree vim plugin for my project.

I can't find the documentation for switching between opened tabs. Can anyone tell me the shortcut key[s] ?

Thanks...

share|improve this question
Note: The tabs functionality is a standard feature of vim (since version 7) - though NERDTree happens to put them to good use – Pierz May 7 at 10:14

5 Answers

up vote 40 down vote accepted

An additional option (and my personal choice)beyond the ones listed by Michael Madsen:

gt = next tab

gT = previous tab

share|improve this answer

I like to bind my vim navigation keys to switching between tabs. Here are the lines from my .vimrc file:

map  <C-l> :tabn<CR>
map  <C-h> :tabp<CR>
map  <C-n> :tabnew<CR>

That way, I can switch between tabs using the left and right buttons just like I normally would move the cursor, except I just hold the Control key as well.

  • Control+l moves to the next tab
  • Control+h moves to the previous tab
  • Control+n creates a new tab
share|improve this answer
interesting. this will certainly com in handy. is it possible to change the mapping for VIM navigation commands like the difficult to hit SHIFT+$ ? – pylonicon Jul 14 '10 at 1:43
Are you referring to moving to the end of the line? If so, a simple command can do this 'map <C-l> $' or something similar. – Brian Riehman Jul 14 '10 at 18:43

A quick check in :h tabs reveals it's CTRL-Page Down to cycle between tabs. You can also use the :tabnext command (:tabn for short).

share|improve this answer
2  
Unfortunately, CTRL-PageDown only works in gvim. – amcnabb Jul 19 '12 at 21:09
CTRL+PageDown works fine in plain old vim 7.3 – Nik Martin May 2 at 0:35

I use iTerm on the mac, and I like being able to switch to the next/previous tabs using Shift-[left arrow key] and Shift-[right arrow key]

From my .vimrc, here's how to do the same thing in MacVim;

  map <S-Right> :tabn<CR>
  map <S-Left>  :tabp<CR>

FYI, by default, the key combos Cmd-Shift-[ and Cmd-Shift-] will switch between tabs in MacVim (and in Google Chrome, Safari and probably a bunch of other stuff)

share|improve this answer

Adding to digitalronin's answer, I think that the primary browser shortcut (at least in Chrome and Firefox) for switching tabs is option+command+right or left arrow.

If you want to keep your NERDTree Vim setup consistent with that, then this variation would work.

 map <D-A-Right> :tabn<CR>
 map <D-A-Left>  :tabp<CR>
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.