2013-08-11 11:24:08 -04:00
|
|
|
" MIT License. Copyright (c) 2013 Bailey Ling.
|
2013-08-05 22:56:30 -04:00
|
|
|
" vim: ts=2 sts=2 sw=2 fdm=indent
|
|
|
|
|
2013-08-06 21:42:32 -04:00
|
|
|
function! airline#extensions#syntastic#apply()
|
2013-08-11 11:24:08 -04:00
|
|
|
let w:airline_section_warning = ' %#warningmsg#%{SyntasticStatuslineFlag()}'
|
2013-08-05 22:56:30 -04:00
|
|
|
endfunction
|
2013-08-06 21:42:32 -04:00
|
|
|
|
|
|
|
function! airline#extensions#syntastic#init(ext)
|
|
|
|
call a:ext.add_statusline_funcref(function('airline#extensions#syntastic#apply'))
|
|
|
|
endfunction
|