Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Vim, is it possible to “move” a window to the left or right? Eg, similar to <c-w> r or <c-w> x, but left/right instead of up/down?

For example, if I've got this layout:

+---+---+---+
|   |   +---+
| A +---+---+
|   |   |   |
+---+---+---+

I'd like to turn it into this:

+---+---+---+
|   |   +---+
+---+ A +---+
|   |   |   |
+---+---+---+

Which is difficult/annoying to do with <c-w> {H,J,K,L}.

share|improve this question
3  
Don't believe so...what your asking implies that splits can be grouped and then moved together...AFAIK this doesn't exist. – Andrew Sledge Dec 29 '10 at 17:35

2 Answers

up vote 50 down vote accepted

The Ctrl-W gives you the "windows command mode", lets see:

Ctrl + W + R   - To rotate windows up/left.

Ctrl + W + r   - To rotate windows down/right.

You can use the Ctrl + W + navigation keys to change windows' position too:

Ctrl + W L   - Move the current window to the "far right"

Ctrl + W H   - Move the current window to the "far left"

Ctrl-W J   - Move the current window to the "very top"

Ctrl + W K   - Move the current window to the "very bottom"

I hope with this you can accomplish what you are trying to do.

share|improve this answer
<c-w> r only rotates vertically. – David Wolever Dec 31 '10 at 18:32
2  
@David Wolever, you need to use the upper case letters in this case, something like: Ctrl-W + Shift-L, for example. I think this can be what you are looking for. – Ricardo Valeriano Feb 9 '11 at 20:28
@David - just tested this and <c-w> r worked horizontally for me. – ostler.c Jan 9 at 19:18

Do you want to move the window itself or just your cursor position?

Next to rotating or cycling like you already mentioned, it's only possible to move the window itself to the far top, bottom, left or right, with respectively:

^W K
^W J
^W H
^W L

I don't think there is a default builtin way to moving a window one place to the right.

share|improve this answer
I want to move the windows, not the cursor. – David Wolever Dec 31 '10 at 18:33
1  
Then this is as far as you can go with the vim window commands, if this was usefull to you please mark it as the solution :-) – Bitterzoet Jan 5 '11 at 11:40

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.