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

13 lines
428 B
VimL
Raw Normal View History

2013-08-06 02:56:30 +00:00
" MIT license. Copyright (c) 2013 Bailey Ling.
" vim: ts=2 sts=2 sw=2 fdm=indent
2013-08-07 01:42:32 +00:00
function! airline#extensions#syntastic#apply()
if exists('w:airline_active') && w:airline_active
let w:airline_section_warning = ' %#warningmsg#%{SyntasticStatuslineFlag()}'
2013-08-06 02:56:30 +00:00
endif
endfunction
2013-08-07 01:42:32 +00:00
function! airline#extensions#syntastic#init(ext)
call a:ext.add_statusline_funcref(function('airline#extensions#syntastic#apply'))
endfunction