On 21-Oct-2011 07:32, Yue Wu wrote: > Hello, list, > > As the title, if a tab can have a buffer list independent with other > tabs, then I can use tab to category the buffers, and one tab for one > project.
This is against Vim's model, and therefore unlikely to be implemented. However, you could write overloaded commands / command-completions (which commands do you have in mind? :ls, :buf, :sbuf?) in Vimscript that achieve just that. (And with the cmdalias plugin could even replace the built-in commands). For example, I have written a custom command that :bdeletes all buffers which are only visible in the current tab page, so that I can wipe an entire tab page from my Vim instance. Alternatively, there are several buffer-management plugins on vim.org, maybe it'll help to investigate those and adapt your style of use?! -- regards, ingo -- You received this message from the "vim_dev" 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
