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-08-21 15:14:12 +00:00
|
|
|
function! airline#extensions#syntastic#apply(...)
|
2013-08-25 15:39:11 +00:00
|
|
|
call airline#extensions#append_to_section('warning', '%{SyntasticStatuslineFlag()}')
|
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-23 21:22:20 +00:00
|
|
|
call a:ext.add_statusline_func('airline#extensions#syntastic#apply')
|
2013-08-07 01:42:32 +00:00
|
|
|
endfunction
|
2013-08-20 15:02:17 +00:00
|
|
|
|