1
0
mirror of https://github.com/amix/vimrc synced 2025-07-12 14:15:00 +08:00

enable gitgutter; fix move tab left not working

This commit is contained in:
Huaishun Hu
2017-09-03 14:02:05 +08:00
parent d56a49f5b4
commit 7e14317881
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ map <S-L> gt
" mv current tab left
map <C-H> :execute 'tabmove ' . (tabpagenr()-2)<CR>
" mv current tab right
map <C-L> :execute 'tabmove ' . tabpagenr()<CR>
map <C-L> :execute 'tabmove ' . (tabpagenr()+1)<CR>
" new tab
map <C-t><C-t> :tabnew<CR>