mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-28 11:36:47 +08:00
9 lines
266 B
VimL
9 lines
266 B
VimL
" MIT license. Copyright (c) 2013 Bailey Ling.
|
|
" vim: ts=2 sts=2 sw=2 fdm=indent
|
|
|
|
function! airline#extensions#syntastic#init(ext)
|
|
if g:airline_section_gutter == ''
|
|
let g:airline_section_gutter = '%#warningmsg#%{SyntasticStatuslineFlag()}'
|
|
endif
|
|
endfunction
|