hunks: Display the hunks summary only if Git Gutter is enabled

This commit is contained in:
Bastian Winkler 2013-08-19 23:13:00 +02:00
parent e2a758e309
commit bbe077037e
1 changed files with 3 additions and 0 deletions

View File

@ -5,6 +5,9 @@ let s:non_zero_only = get(g:, 'airline#extensions#hunks#non_zero_only', 0)
let s:hunk_symbols = get(g:, 'airline#extensions#hunks#hunk_symbols', ['+', '~', '-'])
function! airline#extensions#hunks#get_hunks()
if get(g:, 'gitgutter_enabled', 0) == 0
return ''
endif
let hunks = GitGutterGetHunkSummary()
let string = ''
for i in [0, 1, 2]