Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/chaoren/vim-resizewindow
- Owner: chaoren
- Created: 2016-06-19T08:46:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-02-26T21:19:07.000Z (almost 2 years ago)
- Last Synced: 2024-10-13T14:16:39.096Z (2 months ago)
- Language: Vim Script
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```