2015-02-14 07:46:23 +08:00
|
|
|
" MIT License. Copyright (c) 2013-2015 Bailey Ling.
|
2013-08-20 23:02:17 +08:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-06 10:56:30 +08:00
|
|
|
|
2013-09-10 23:37:25 +08:00
|
|
|
if !exists(':SyntasticCheck')
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2013-08-28 07:38:34 +08:00
|
|
|
function! airline#extensions#syntastic#get_warnings()
|
|
|
|
let errors = SyntasticStatuslineFlag()
|
|
|
|
if strlen(errors) > 0
|
2013-09-22 23:29:27 +08:00
|
|
|
return errors.(g:airline_symbols.space)
|
2013-08-28 07:38:34 +08:00
|
|
|
endif
|
|
|
|
return ''
|
2013-08-06 10:56:30 +08:00
|
|
|
endfunction
|
2013-08-07 09:42:32 +08:00
|
|
|
|
|
|
|
function! airline#extensions#syntastic#init(ext)
|
2013-08-31 06:07:45 +08:00
|
|
|
call airline#parts#define_function('syntastic', 'airline#extensions#syntastic#get_warnings')
|
2013-08-07 09:42:32 +08:00
|
|
|
endfunction
|
2013-08-20 23:02:17 +08:00
|
|
|
|