Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I was trying to switch from a tab to another tab (which may not be adjacent to the previous tab) in VIM. Is there any shortcut for that, like we have Ctrl-p/Ctrl-n for switching to adjacent tabs?

Also, I was trying to write a key mapping which will give a variable as input to a function and do the operation. For instance, let's say I press Ctrl-5 and a function (written by the user) will be called and given as input 5, and the cursor will go to tab 5 (if there is any 5th tab opened).

Can you please suggest how this can be done?

share|improve this question
This should be split into two seperate questions, so you can accept two seperate answers for the two distinct questions. – James Polley Jan 5 '10 at 10:05
@James, to know whether this is for two questions, one should know whether a built-in function for switching to N-th tab exists. ;-) – Pavel Shved Jan 5 '10 at 10:16
Thanks for all the answers. But how one can write a function which accepts a variable input. writing nmap tt <ESC>:tabnew<CR> seems easy but how binding :tabnew x (where x is a variable) to a key can be done? – Sumit Jan 5 '10 at 10:22
:tabnew 4 creates a tab named "4" – Antony Hatchkins Jan 5 '10 at 10:46
@Antony Hatchkins, :tabnew doesn't accept any params - it simply creates tabs. To allow naming you should use tabline and guitablabel. – Victor Farazdagi Aug 21 '10 at 8:21
show 1 more comment

2 Answers

up vote 37 down vote accepted

use 5gt to switch to tab 5

:tabn[ext] {count}

{count}gt

Go to tab page {count}. The first tab page has number one.

you can also bind it to a key:

:map <C-5> 5gt
:imap <C-5> <C-O>5gt

(Mapping Ctrl-<number> could be different/impossible for some terminals. Consider Alt-<number> then)

share|improve this answer
2  
Be VERY careful not to mix up :tabnext and tabNext – puk Mar 1 '12 at 6:50

Tackling only your first question, and quoting from help tabs in vim:

{count}gt       Go to tab page {count}.  The first tab page has number one.
{count}gT       Go {count} tab pages back.  Wraps around from the first one
                to the last one.

ie, typing 3gt goes to the third tab, 3gT goes 3 tabs back from the current tab.

share|improve this answer
   
not exactly. 3gt moves to the third tab, not 3 tabs forward – Antony Hatchkins Jan 5 '10 at 10:11
urgh. That's urghy. – James Polley Jan 5 '10 at 10:14

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.