2e3055541e
Currently the syntastic results are simply dumped into the error section, however syntastic does internally distinguish between error and warning sections. Therefore change the syntastic extension to dump errors into the error section and warnings into the warning section. closes #1480
45 lines
1.3 KiB
VimL
45 lines
1.3 KiB
VimL
" MIT License. Copyright (c) 2013-2016 Bailey Ling.
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
scriptencoding utf-8
|
|
|
|
if !exists(':SyntasticCheck')
|
|
finish
|
|
endif
|
|
|
|
let s:error_symbol = get(g:, 'airline#extensions#syntastic#error_symbol', 'E:')
|
|
let s:warning_symbol = get(g:, 'airline#extensions#syntastic#warning_symbol', 'W:')
|
|
|
|
function! airline#extensions#syntastic#get_warning()
|
|
return airline#extensions#syntastic#get('warning')
|
|
endfunction
|
|
|
|
function! airline#extensions#syntastic#get_error()
|
|
return airline#extensions#syntastic#get('error')
|
|
endfunction
|
|
|
|
function! airline#extensions#syntastic#get(type)
|
|
let _backup = get(g:, 'syntastic_stl_format', '')
|
|
let is_err = (a:type is# 'error')
|
|
let res = ''
|
|
if is_err
|
|
let g:syntastic_stl_format = '%E{%e}'
|
|
else
|
|
let g:syntastic_stl_format = '%W{%w}'
|
|
endif
|
|
let cnt = SyntasticStatuslineFlag()
|
|
if !empty(_backup)
|
|
let g:syntastic_stl_format = _backup
|
|
endif
|
|
if cnt == 0
|
|
return ''
|
|
else
|
|
return (is_err ? s:error_symbol : s:warning_symbol).cnt
|
|
endif
|
|
endfunction
|
|
|
|
function! airline#extensions#syntastic#init(ext)
|
|
call airline#parts#define_function('syntastic-warn', 'airline#extensions#syntastic#get_warning')
|
|
call airline#parts#define_function('syntastic-err', 'airline#extensions#syntastic#get_error')
|
|
endfunction
|