When I work with VIM, I always have multiple windows visible. Sometimes I would like to have an easy way, to swap those windows in places. Is there any Plugin, Macro, etc to make this more easy? BTW, I use MiniBufExplorer.
|
|
There are a few useful commands built in which give you a certain amount of control, but it's not comprehensive. The main ones are:
(and similarly for Ctrl-W, Shift-J and Ctrl-W, Shift-L). See:
for more information. |
|||||||||||||
|
|
I wrote and have been using the following code snippet in my vimrc for copy-pasting my Vim windows. This defines for example the following shortcuts:
If by "swapping those windows in places", you mean "opening the buffer in window A in window B, and vice versa, without changing the position of the windows", you can use the following keyboard sequence to swap the windows:
It works only in Vim >= 7.0.
|
|||
|
|
As So you may do some work to satisfy your particular needs of window/buffer switching. Here is am example to switching the current window with the top left window(typically I make it vertically maximized):
|
|||
|
|