Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can you switch your current windows from horizontal split to vertical split and vice versa in Vim?

I did that a moment ago by accident but I cannot find the key again.

share|improve this question
perhaps dwm.vim plugin will be kinda useful – ДМИТРИЙ МАЛИКОВ Jan 12 at 12:43

4 Answers

up vote 214 down vote accepted

Vim mailing list says (re-formatted for better readability):

To change two vertically split windows to horizonally split

    Ctrl-W t Ctrl-W K

Horizontally to vertically:

    Ctrl-W t Ctrl-W H

Explanations:

    Ctrl-W t     makes the first (topleft) window current
    Ctrl-W K     moves the current window to full-width at the very top
    Ctrl-W H     moves the current window to full-height at far left

Note that the t is lowercase, and the K and H are uppercase.

Also, with only two windows, it seems like you can drop the Ctrl-W t part because if you're already in one of only two windows, what's the point of making it current?

share|improve this answer
2  
So if you have two windows split horizontally, and you are in the lower window, you just use ^WL. – too much php Aug 13 '09 at 2:17
+1 - Thanks! Super-easy to understand! – Topher Fangio Jan 17 '12 at 14:26
1  
.... The power... My vim-fu doubled today, thank you. There are a ton of interesting ^w commands (b, w, etc) – Alex Hart Dec 7 '12 at 14:10
somehow doesn't work for me.. =/ – holms Feb 28 at 9:07

^w followed by capital H,J,K or L will move the current window to the far left,bottom,top or right respectively like normal cursor navigation.

The lower case equivalents move focus instead of moving the window.

share|improve this answer

In VIM, take a look at the following to see different alternatives for what you might have done:

:help opening-window

For instance:

Ctrl-W s
Ctrl-W o
Ctrl-W v
Ctrl-W o
Ctrl-W s
...
share|improve this answer
The command ^W-o is great! I did not know it. – Masi Aug 13 '09 at 2:20

A shortcut for opening a vertically split window (from within Vim) is

:vsplit

Or even

:vs

See a similar solution posted here.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.