Re: vertically split the whole screen

2007-02-26 Thread cga2000
On Mon, Feb 26, 2007 at 06:38:35PM EST, Kamaraju S Kusumanchi wrote: > Let's say I open a vim session by > > vim -o2 file1 file2 > > now when inside file1, If I do > > :vs file3 > > I will get > > -- > file1 | file3 > -- > file2 > -- > > > Instead I wa

Re: vertically split the whole screen

2007-02-26 Thread Tim Chase
> vim -o2 file1 file2 > > now when inside file1, If I do > > :vs file3 > > I will get > > -- > file1 | file3 > -- > file2 > -- > > > Instead I want to get > -- > file1 | > --- file3 > file2 | > -- > > Is there any easy way?

vertically split the whole screen

2007-02-26 Thread Kamaraju S Kusumanchi
Let's say I open a vim session by vim -o2 file1 file2 now when inside file1, If I do :vs file3 I will get -- file1 | file3 -- file2 -- Instead I want to get -- file1 | --- file3 file2 | -- Is there any easy way? raju --