vim: shortcuts: improve tab navigation

feature/improve-speed
bretello 2021-09-26 16:02:21 +02:00
parent 9fe51f308c
commit 14be7945e1
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
1 changed files with 5 additions and 5 deletions

View File

@ -26,11 +26,11 @@ nmap <leader>pp :setlocal paste!<CR>
" Re-select the text block just pasted
nnoremap <Leader>vv V`]
" Easy tab navigation with <leader>t
nmap <leader>tn :tabnext<CR>
nmap <leader>tN :tabnew<CR>
nmap <leader>tp :tabprev<CR>
nmap <leader>tc :tabclose<CR>
" Easy tab navigation with <leader>T
nmap <leader>Tn :tabnext<CR>
nmap <leader>TN :tabnew<CR>
nmap <leader>Tp :tabprev<CR>
nmap <leader>Tc :tabclose<CR>
" open quickfix
nmap <leader>cc :botright cope<CR>