hunks: add support for quickfixsigns

Closes: https://github.com/bling/vim-airline/pull/754
This commit is contained in:
Daniel Hahler
2015-04-16 20:26:42 +02:00
parent f45ecdac15
commit f22fbfd41d
4 changed files with 12 additions and 3 deletions

View File

@@ -159,7 +159,7 @@ function! airline#extensions#load()
endif
if (get(g:, 'airline#extensions#hunks#enabled', 1) && get(g:, 'airline_enable_hunks', 1))
\ && (exists('g:loaded_signify') || exists('g:loaded_gitgutter') || exists('g:loaded_changes'))
\ && (exists('g:loaded_signify') || exists('g:loaded_gitgutter') || exists('g:loaded_changes') || exists('g:loaded_quickfixsigns'))
call airline#extensions#hunks#init(s:ext)
endif