]> git.zndr.dk Git - dotfiles.git/commitdiff
Modified vimrc
authorJannik ZANDER <jzander@grundfos.com>
Thu, 28 Jun 2018 09:42:18 +0000 (11:42 +0200)
committerJannik ZANDER <jzander@grundfos.com>
Thu, 28 Jun 2018 09:42:18 +0000 (11:42 +0200)
.vim/vimrc

index 507f5f0eae97e264197e0e13da3b33f01d62b13d..628566abdb20a8a57f6b7a31b8bae28f24118dd2 100644 (file)
@@ -247,18 +247,15 @@ if has("cscope")
   map <c-_> :cstag <c-r>=expand("<cword>")<cr><cr>
 endif
 
-" Maps Ctrl-[h,j,k,l] to windows split navigations
-nnoremap <C-h>    <C-W><C-H>
-nnoremap <C-j>    <C-W><C-J>
-nnoremap <C-k>    <C-W><C-K>
-nnoremap <C-l>    <C-W><C-L>
-
-"
-" Maps Ctrl-[h,j,k,l] to resizing a window split
-nnoremap <C-H>  <C-W><
-nnoremap <C-J>  <C-W>-
-nnoremap <C-K>  <C-W>+
-nnoremap <C-L>  <C-W>>
+" Maps Ctrl-[h,j,k,l,+,-] to windows split navigations and resizing
+nnoremap <C-H>    <C-W><C-H>
+nnoremap <C-J>    <C-W><C-J>
+nnoremap <C-K>    <C-W><C-K>
+nnoremap <C-L>    <C-W><C-L>
+if bufwinnr(1)
+nnoremap <Leader>j :exe "resize " . (winheight(0) * 2/3)<CR>
+nnoremap <Leader>k :exe "resize " . (winheight(0) * 3/2)<CR>
+endif
 
 " folding
 noremap <space> za