GVim: open a new blank tab or open spooled files in a new tab
3 answers
You can open a new tab for each buffer:
http://vim.wikia.com/wiki/Open_every_buffer_in_its_own_tabpage
+1
source to share
:tabe %
will open the same
:tabe filename
will open a new tab to the file.
I like the t plugin command
https://github.com/wincent/Command-T
then its \t
to find files in cwd and below and \b
to find buffers. Control T opens a new tab.
0
source to share