vim: Jump table bindings

Center cursor after jumping.
Add <S-Tab> binding to jump backwards to match the <Tab> binding (jump
forward).
This commit is contained in:
2020-11-05 13:13:05 +01:00
parent fdaa2dedb7
commit d27b25c46d

View File

@@ -132,6 +132,11 @@ map! ue ü
map! Ue Ü map! Ue Ü
map! sz ß map! sz ß
" Jump through jump table but center
noremap <Tab> <Tab>zz
noremap <C-O> <C-O>zz
nmap <S-Tab> <C-O>
" Aesthetics ################################################################### " Aesthetics ###################################################################
" Use 24-bit (true-color) mode " Use 24-bit (true-color) mode
if (has('termguicolors')) if (has('termguicolors'))