From ecac5815106fb2a3278883d54ee11543ec0a8194 Mon Sep 17 00:00:00 2001 From: Yan Pritzker Date: Thu, 8 Mar 2012 13:20:05 -0800 Subject: [PATCH] Added + and - for resizing vertical windows --- README.md | 1 + vim/plugin/settings/yadr-keymap.vim | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/README.md b/README.md index 6e1a48f9..da530bc0 100644 --- a/README.md +++ b/README.md @@ -336,6 +336,7 @@ files contain key mappings as well (TODO: probably will move them out to skwp-ke * `H` `L` `I` `M` - to move left, right, up, down between windows * `Q` - Intelligent Window Killer. Close window `wincmd c` if there are multiple windows to same buffer, or kill the buffer `bwipeout` if this is the last window into it. + * `+` and `-` for resizing vertical windows #### Splits diff --git a/vim/plugin/settings/yadr-keymap.vim b/vim/plugin/settings/yadr-keymap.vim index 51f0e30e..05a5b412 100644 --- a/vim/plugin/settings/yadr-keymap.vim +++ b/vim/plugin/settings/yadr-keymap.vim @@ -133,6 +133,10 @@ map :tabn 9 nnoremap vv v nnoremap ss s +" Resize vertical windows by hitting plus and minus +nnoremap + + +nnoremap - - + "open the taglist (method browser) using ,t nnoremap ,T :TlistToggle