enable gitgutter; fix move tab left not working
This commit is contained in:
parent
d56a49f5b4
commit
7e14317881
2 changed files with 2 additions and 2 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
||||
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
|
||||
|
|
Loading…
Reference in a new issue