16 lines
393 B
VimL
Raw Normal View History

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