We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31495d2 commit 4dc74d7Copy full SHA for 4dc74d7
1 file changed
.vim/common_config/key_mappings.vim
@@ -61,11 +61,11 @@
61
nnoremap <tab> %
62
vnoremap <tab> %
63
64
-" change buffer size with +/-
65
- if bufwinnr(1)
66
- map + <C-W>+
67
- map - <C-W>-
68
- endif
+" buffer resizing mappings (shift + arrow key)
+ nnoremap <S-Up> <c-w>+
+ nnoremap <S-Down> <c-w>-
+ nnoremap <S-Left> <c-w><
+ nnoremap <S-Right> <c-w>>
69
70
" reindent the entire file
71
map <Leader>I gg=G``<cr>
0 commit comments