tab key navigation of buffers
dblume

dblume commited on 2023-03-01 16:29:23
Showing 1 changed files, with 4 additions and 0 deletions.

... ...
@@ -56,6 +56,10 @@ nnoremap <C-l> <C-w>l
56 56
 " clear search highlights
57 57
 nnoremap <cr> :noh<cr><cr>
58 58
 
59
+" tab switches to previous/next buffer
60
+nnoremap <Tab> :bp<cr>
61
+nnoremap <S-Tab> :bn<cr>
62
+
59 63
 syntax on
60 64
 
61 65
 set t_Co=256
62 66