Skip to content

vim plugin to automatically resize your vim splits as you move between them

Notifications You must be signed in to change notification settings

vyorkin-archive/splitresize

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

splitresize

vim plugin to automatically resize your vim splits as you move between them

Overview

Idea and implementation is taken from this post

Installation

Just use anything you like: pathogen, vundle, neobundle, vim-plug, etc

Configuration

g:splitresize_map_keys - enables default key mappings.

Defaults are these: <C-J>, <C-K>, <C-L>, <C-H>

If you want to change this, you could write something similar to how its actually defined:

nnoremap <silent><C-J> <C-W><C-J>:call Splitresize()<CR>
nnoremap <silent><C-K> <C-W><C-K>:call Splitresize()<CR>
nnoremap <silent><C-L> <C-W><C-L>:call Splitresize()<CR>
nnoremap <silent><C-H> <C-W><C-H>:call Splitresize()<CR>

About

vim plugin to automatically resize your vim splits as you move between them

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published