Vim Tips Wiki
(fix DrChip changed URL + minor manual clean)
(Change <tt> to <code>, perhaps also minor tweak.)
 
Line 36: Line 36:
   
 
==Related plugins==
 
==Related plugins==
*[http://www.drchip.org/astronaut/vim/index.html#TWL twl.vim] implements <tt>:TWL</tt> (toggle window layout) which detects which type of window layout you currently have (vertical or horizontal), and applies the correct command to toggle the layout.
+
*[http://www.drchip.org/astronaut/vim/index.html#TWL twl.vim] implements <code>:TWL</code> (toggle window layout) which detects which type of window layout you currently have (vertical or horizontal), and applies the correct command to toggle the layout.
   
 
==Comments==
 
==Comments==

Latest revision as of 05:52, 13 July 2012

Tip 862 Printable Monobook Previous Next

created 2005 · complexity intermediate · author Charles E. Campbell, Jr. · version 6.0


Suppose you have three windows in a "horizontal list", like this:

Window1|Window2|Window3

Entering the command:

:windo wincmd K

will change the windows to a "vertical list", like this:

Window1
Window2
Window3

Starting with a "vertical list", entering the command:

:windo wincmd H

will change the windows to a "horizontal list".

Related plugins[]

  • twl.vim implements :TWL (toggle window layout) which detects which type of window layout you currently have (vertical or horizontal), and applies the correct command to toggle the layout.

Comments[]