1
0
Fork 0
mirror of synced 2024-06-25 18:21:11 -04: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>

View file

@ -160,7 +160,7 @@ nnoremap <silent> <leader>c :call SyntasticCheckCoffeescript()<cr>
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Git gutter (Git diff)
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
let g:gitgutter_enabled=0
let g:gitgutter_enabled=1
nnoremap <silent> <leader>d :GitGutterToggle<cr>
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""