Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/chaoren/vim-resizewindow

More intuitive way to resize windows in Vim
https://github.com/chaoren/vim-resizewindow

Last synced: 28 days ago
JSON representation

More intuitive way to resize windows in Vim

Awesome Lists containing this project

README

        

# More intuitive way to resize windows in Vim

This plugin provides direction based resizing of windows.

Using `+`, `-`, `<`, and `>` to resize windows can be
disorienting since `<` and `>` look like they should always be moving
the window divider left and right, respectively, but they don't if you're in the
right most window.

## Customization

The default mappings are ``, ``, ``, and
``.

### `g:resizewindow_nomap`

Use `g:resizewindow_nomap` to get `` mappings only. \
E.g.,

```vim
nmap < ResizeWindowLeft
nmap + ResizeWindowDown
nmap - ResizeWindowUp
nmap > ResizeWindowRight
```