vimrc: tab management conflicts with ctags navigation

This commit is contained in:
Tobias Schmidl 2020-09-25 09:55:39 +02:00
parent a32534a233
commit 1a5ad57bb5

7
.vimrc
View file

@ -102,13 +102,6 @@ set listchars=eol:¶,tab:\»\ ,trail:~,extends:>,precedes:<,nbsp:+
set list
set tags+=$HOME/.cache/cpp_tags
" Fast tab navigation
nnoremap <C-t> :tabnew<CR>
nnoremap <C-d> :tabclose<CR>
"
inoremap <C-t> <Esc>:tabnew<CR>
inoremap <C-d> <Esc>:tabclose<CR>
" Fast split/window navigation with <Ctrl-hjkl>
noremap <C-h> <C-w><C-h>
noremap <C-j> <C-w><C-j>