On Wednesday, August 14, 2013 1:15:07 PM UTC-5, Art Diabolic wrote:
> Hello everyone!
> 
> 
> 
> I am Vim noob .
> 
> 
> 
> I some times use vim in 2 or more another projects and I want have for all 
> tabs different sets of buffers. Аs it is possible to realize? 
> 
> 
> 
> I do not want run two instance of Vim

It looks like the BufExplorer plugin is a good solution, but you might also be 
able to make use of argument lists instead.

If you use :arglocal to edit your files, the argument list is local to the 
window you run it in. So :tabnew followed by another :arglocal command will 
give you two separate argument lists. Whenever you split a window, according to 
the help just below :help :argglobal, the new window will share the argument 
list of the window it split from. Thus, every window created in a new tab will 
inherit the same argument list.

You just then need to be sure to use :argadd/:argdel to manage your list of 
files in each tab.

I'm not sure how manageable this would be, I've never actually tried it myself.

-- 
-- 
You received this message from the "vim_use" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php

--- 
You received this message because you are subscribed to the Google Groups 
"vim_use" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to