mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-23 12:41:13 +08:00
Hide hunks when Git Gutter is enabled, but current file is NOT under git version control
This commit is contained in:
parent
ce15809db3
commit
08a57d0227
|
@ -17,8 +17,9 @@ function! s:get_hunks_signify()
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
function! s:get_hunks_gitgutter()
|
function! s:get_hunks_gitgutter()
|
||||||
if !get(g:, 'gitgutter_enabled', 0)
|
if !get(g:, 'gitgutter_enabled', 0) || airline#extensions#branch#get_head() ==
|
||||||
return ''
|
\ get(g:, 'airline#extensions#branch#empty_message', get(g:, 'airline_branch_empty_message', ''))
|
||||||
|
return ''
|
||||||
endif
|
endif
|
||||||
return GitGutterGetHunkSummary()
|
return GitGutterGetHunkSummary()
|
||||||
endfunction
|
endfunction
|
||||||
|
|
Loading…
Reference in New Issue
Block a user