vim-airline/autoload/airline/extensions/syntastic.vim

20 lines
478 B
VimL
Raw Normal View History

2014-01-19 23:44:44 -05:00
" MIT License. Copyright (c) 2013-2014 Bailey Ling.
" vim: et ts=2 sts=2 sw=2
2013-08-05 22:56:30 -04:00
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 ''
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-30 18:07:45 -04:00
call airline#parts#define_function('syntastic', 'airline#extensions#syntastic#get_warnings')
2013-08-06 21:42:32 -04:00
endfunction