vim: add <leader>t shortcuts class for tab navigation

feature/improve-speed
bretello 2021-03-14 17:12:41 +01:00
parent 5a79c63f33
commit 1a603373ec
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
1 changed files with 6 additions and 0 deletions

View File

@ -26,6 +26,12 @@ 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>
" open quickfix
nmap <leader>cc :botright cope<CR>
" close quickfix (also see <leader>C below)