finally fix resizing

This commit is contained in:
Christoph J. Scherr 2023-07-05 15:49:40 +02:00
parent 2f9f0f9ce3
commit 2bfbad0657
Signed by: cscherrNT
GPG Key ID: 8E2B45BC51A27EA7
1 changed files with 2 additions and 2 deletions

View File

@ -64,8 +64,8 @@ vmap <Up> :m -2<CR>
vmap <Down> :m +1<CR> vmap <Down> :m +1<CR>
" resize windows " resize windows
nnoremap <C-Left> :vertical resize +1<CR> nnoremap <C-Left> :vertical resize -1<CR>
nnoremap <C-Right> :vertical resize -1<CR> nnoremap <C-Right> :vertical resize +1<CR>
nnoremap <C-Up> :resize -1<CR> nnoremap <C-Up> :resize -1<CR>
nnoremap <C-Down> :resize +1<CR> nnoremap <C-Down> :resize +1<CR>