2014-02-07 05:41:15 -05:00
|
|
|
" MIT License. Copyright (c) 2013-2014 Bailey Ling.
|
2013-11-16 14:45:48 -05:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
|
|
|
if !exists(':SyntasticCheck')
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
|
|
|
function! airline#extensions#syntastic#get_warnings()
|
|
|
|
let errors = SyntasticStatuslineFlag()
|
|
|
|
if strlen(errors) > 0
|
|
|
|
return errors.(g:airline_symbols.space)
|
|
|
|
endif
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#syntastic#init(ext)
|
|
|
|
call airline#parts#define_function('syntastic', 'airline#extensions#syntastic#get_warnings')
|
|
|
|
endfunction
|
|
|
|
|