On Mon, Oct 13, 2008 at 08:29:49PM -0700, Aman Jain wrote: > > Hi All > > Say I have 10 buffers open in vim. > But currently only one of them is being edited. > What should I do so that I can have a look at all the 10 buffers, in > split windows? > I tried <CTRL>w=, but it did not work. > > Thanks > Aman Jain > India > >
I would do something like :only | bufdo sb % This has the disadvantage that one of the buffers will appear twice, as the first thing :bufdo does is :bfirst. So this will load the first buffer, split it into two windows, and move to the next. -- Erik Falor Registered Linux User #445632 http://counter.li.org --~--~---------~--~----~------------~-------~--~----~ You received this message from the "vim_use" maillist. For more information, visit http://www.vim.org/maillist.php -~----------~----~----~----~------~----~------~--~---
