vim-windowswap icon indicating copy to clipboard operation
vim-windowswap copied to clipboard

Swap your windows without ruining your layout

Results 4 vim-windowswap issues
Sort by recently updated
recently updated
newest added

Add vim-plug to Installation section.

I wrote a tiny function utilizing WindowSwap to swap two adjacent windows with a single mapping: ```viml function! WindowSwapInDirection(dir) call WindowSwap#MarkWindowSwap() exec 'wincmd ' . a:dir call WindowSwap#DoWindowSwap() endfunction noremap...

To avoid confusion like in #4 and to not clutter up people's key-space, stop adding bindings for `MarkWindow` and `PasteWindow`. I don't want to rock anyone's vimboat so a very...

Using `yw` then `yp` behave like using `ww` two times: it swaps the windows. It'd be nice to just paste a window, not swap. E.g., I was expecting `yw` to...

enhancement