vote up 2 vote down star

How can you switch your to 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.

flag

3 Answers

vote up 0 vote down

If you have two windows open, you can quit one of them with :q.

Looking in /usr/share/vim/vim72/doc/index.txt.gz I only find a reference to

|CTRL-W_v| CTRL-W v
split current window vertically, new window N lines wide

but no corresponding horizontal split.

link|flag
I guess this is not what OP asked. – seg.server.fault Aug 13 at 1:46
Yes, I misunderstood at first as if he had splitted by accident and wanted to "get out" (happens to me some times). – hlovdal Aug 13 at 1:50
vote up 5 vote down

Vim mailing list says:

To change two vertically split windows to horizonally split

    ^Wt^WK

Horizontally to vertically:

    ^Wt^WH

where ^W means "hit Ctrl-W". Explanations:

    ^Wt     makes the first (topleft) window current
    ^WK     moves the current window to full-width at the very top
    ^WH     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 ^Wt part because if you're already in one of only two windows, what's the point of making it current?

link|flag
So if you have two windows split horizontally, and you are in the lower window, you just use ^WL. – too much php Aug 13 at 2:17
I cannot get ^WL to work. – Masi Aug 13 at 2:20
vote up 1 vote down

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
...
link|flag
The command ^W-o is great! I did not know it. – Masi Aug 13 at 2:20

Your Answer

Get an OpenID
or

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