2013-08-11 11:24:08 -04:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
2013-08-20 11:02:17 -04:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-05 22:56:30 -04:00
|
|
|
|
2013-08-27 19:38:34 -04:00
|
|
|
function! airline#extensions#syntastic#get_warnings()
|
|
|
|
let errors = SyntasticStatuslineFlag()
|
|
|
|
if strlen(errors) > 0
|
|
|
|
return ' '.errors
|
|
|
|
endif
|
|
|
|
return ''
|
2013-08-05 22:56:30 -04:00
|
|
|
endfunction
|
2013-08-06 21:42:32 -04:00
|
|
|
|
|
|
|
function! airline#extensions#syntastic#init(ext)
|
2013-08-27 19:38:34 -04:00
|
|
|
let g:airline_parts.syntastic = '%{airline#extensions#syntastic#get_warnings()}'
|
2013-08-06 21:42:32 -04:00
|
|
|
endfunction
|
2013-08-20 11:02:17 -04:00
|
|
|
|