Possible Duplicate:
To switch from vertical split to horizontal split fast in Vim
If I have 2 horizontally split windows, how to rotate them to get 2 vertically split windows?
And how to switch buffers?
If I have 2 horizontally split windows, how to rotate them to get 2 vertically split windows? And how to switch buffers? |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
If you have them split vertically C-wJ to move one to the bottom If you have them split horizontally C-wL to move one to the right To rotate in a 'column' or 'row' of split windows, C-wC-r
|
|||||
|
|
Ctrl-w H or type Ctrl-w J or type Ctrl-w r or type Ctrl-w w or type You may wish to bind one or more of these sequences to make it faster to type. I put this in my .vimrc so that ,l moves the cursor to the next buffer in the current tab:
|
||||
|
|
|
CTRL-W SHIFT-H will rotate the orientation, CTRL-W H moves to the left window, CTRL-W L moves to the right. See :help split and :help ^w for more information. |
|||||||
|
|
The current answers all work great if you only have two windows open. If you have more than that, the logic for moving windows around can get hairy. I have this in my .vimrc to allow me to 'yank' and 'delete' a buffer and then paste it into a window over the current buffer or as a [v]split.
|
|||
|
|