nvim: keymappings: Add key mapping for reloading buffer

Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
Sanchayan Maity 2020-09-11 13:34:08 +05:30
parent bfd2e9bd62
commit 9358922742

View file

@ -20,6 +20,9 @@ nnoremap [b :bprevious<CR>
nnoremap ]b :bnext<CR>
nnoremap [B :bfirst<CR>
nnoremap ]B :blast<CR>
" Reload buffer
nnoremap <Leader>e :e<CR>
nnoremap <Leader>E :bufdo e<CR>
" Tab navigation
nnoremap <Leader>tp :tabprevious<CR>
nnoremap <Leader>tn :tabnext<CR>