2013-08-11 15:24:08 +00:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
2013-08-20 15:02:17 +00:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
2013-08-06 02:56:30 +00:00
|
|
|
|
2013-09-10 15:37:25 +00:00
|
|
|
if !exists(':SyntasticCheck')
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2013-08-27 23:38:34 +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.' '
|
2013-08-27 23:38:34 +00:00
|
|
|
endif
|
|
|
|
return ''
|
2013-08-06 02:56:30 +00:00
|
|
|
endfunction
|
2013-08-07 01:42:32 +00:00
|
|
|
|
|
|
|
function! airline#extensions#syntastic#init(ext)
|
2013-08-30 22:07:45 +00:00
|
|
|
call airline#parts#define_function('syntastic', 'airline#extensions#syntastic#get_warnings')
|
2013-08-07 01:42:32 +00:00
|
|
|
endfunction
|
2013-08-20 15:02:17 +00:00
|
|
|
|