mirror of
https://github.com/vim-airline/vim-airline-themes.git
synced 2026-05-26 01:58:34 +08:00
place syntastic and whitespace into parts.
This commit is contained in:
@@ -1,11 +1,15 @@
|
||||
" MIT License. Copyright (c) 2013 Bailey Ling.
|
||||
" vim: et ts=2 sts=2 sw=2
|
||||
|
||||
function! airline#extensions#syntastic#apply(...)
|
||||
call airline#extensions#append_to_section('warning', '%{SyntasticStatuslineFlag()}')
|
||||
function! airline#extensions#syntastic#get_warnings()
|
||||
let errors = SyntasticStatuslineFlag()
|
||||
if strlen(errors) > 0
|
||||
return ' '.errors
|
||||
endif
|
||||
return ''
|
||||
endfunction
|
||||
|
||||
function! airline#extensions#syntastic#init(ext)
|
||||
call a:ext.add_statusline_func('airline#extensions#syntastic#apply')
|
||||
let g:airline_parts.syntastic = '%{airline#extensions#syntastic#get_warnings()}'
|
||||
endfunction
|
||||
|
||||
|
||||
Reference in New Issue
Block a user