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

Is it possible to take two files that are open in separate tabs in gVim and combine them into one tab with a split/vsplit window? I'd prefer if there was a way to specify which tabs to join, but even something that is the opposite of :tab ball would be good enough.

Thanks

share|improve this question

3 Answers

up vote 7 down vote accepted

Here are a couple of functions that should do what you want, or be easily modifiable to get exactly what you want:

Move_current_window_between_tabs

share|improve this answer
This worked very slick. Thanks! – Jason Down Jan 6 '11 at 18:56
I modified the script so I can split vertically or horizontally when pulling the buffer over (I prefer vertical splits most of the time, but figured why not have the option). Thanks again for the link! – Jason Down Jan 6 '11 at 19:48

Lots of handwork but...

:tabnew
:buffers "note the numbers
:split
:bn " where n is the number of 
<CTRL-W><CTRL-W>
:bn " for the other file
:tabonly " not necessary, closes every other tab

Or you can create a function for it which asks for buffer numbers, then creates the tab, and closes every other tab (for the opened files)...

share|improve this answer

Try this script:

TabMerge http://www.vim.org/scripts/script.php?script_id=1961

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.