Added + and - for resizing vertical windows

This commit is contained in:
Yan Pritzker
2012-03-08 13:20:05 -08:00
parent fa59cff513
commit ecac581510
2 changed files with 5 additions and 0 deletions

View File

@@ -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

View File

@@ -133,6 +133,10 @@ map <silent> <D-9> :tabn 9<cr>
nnoremap <silent> vv <C-w>v
nnoremap <silent> ss <C-w>s
" Resize vertical windows by hitting plus and minus
nnoremap <silent> + <C-w>+
nnoremap <silent> - <C-w>-
"open the taglist (method browser) using ,t
nnoremap <silent> ,T :TlistToggle<CR>