1
0
Fork 0

vim: Add shortcuts for buffer navigation

This commit is contained in:
coderkun 2021-03-13 11:49:55 +01:00
parent 1db2c2275f
commit c5740a08b7

View file

@ -32,3 +32,7 @@ set smartcase
set listchars=tab:>-,trail
set list
:nnoremap <silent> <F5> :let _s=@/<Bar>:%s/\s\+$//e<Bar>:let @/=_s<Bar>:nohl<CR>
" Custom shortcuts
map gb :bn<cr>
map gB :bp<cr>