update buffer navigation with page up/down

This commit is contained in:
ManjaroOne666 2018-11-15 21:06:48 +00:00
parent 86055ebeb7
commit 30d98db64d
1 changed files with 2 additions and 0 deletions

2
vimrc
View File

@ -1018,6 +1018,8 @@ nnoremap <Esc>j :resize -5<CR>
nnoremap <Esc>k :resize +5<CR>
nnoremap <Esc>l :vertical resize +5<CR>
nnoremap <Esc>h :vertical resize -5<CR>
nnoremap <PageUp> :bprevious<CR>
nnoremap <PageDown> :bnext<CR>
"}}}
"location list and quickfix mappings {{{