https://github.com/chaoren/vim-resizewindow
More intuitive way to resize windows in Vim
https://github.com/chaoren/vim-resizewindow
Last synced: 4 months 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 (about 9 years ago)
- Default Branch: master
- Last Pushed: 2023-02-26T21:19:07.000Z (over 2 years ago)
- Last Synced: 2025-01-24T18:13:16.373Z (6 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
```