2014-02-07 05:41:15 -05:00
|
|
|
" MIT License. Copyright (c) 2013-2014 Bailey Ling.
|
2013-11-16 14:45:48 -05:00
|
|
|
" vim: et ts=2 sts=2 sw=2
|
|
|
|
|
|
|
|
if !exists(':ProjectCreate')
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
|
|
|
function! airline#extensions#eclim#creat_line(...)
|
|
|
|
if &filetype == "tree"
|
|
|
|
let builder = a:1
|
|
|
|
call builder.add_section('airline_a', ' Project ')
|
|
|
|
call builder.add_section('airline_b', ' %f ')
|
|
|
|
call builder.add_section('airline_c', '')
|
|
|
|
return 1
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#eclim#get_warnings()
|
|
|
|
let eclimList = eclim#display#signs#GetExisting()
|
2013-12-28 13:23:13 -05:00
|
|
|
|
2013-11-16 14:45:48 -05:00
|
|
|
if !empty(eclimList)
|
2013-12-28 13:23:13 -05:00
|
|
|
" Remove any non-eclim signs (see eclim#display#signs#Update)
|
2014-10-31 17:30:24 -04:00
|
|
|
" First check for just errors since they are more important.
|
|
|
|
" If there are no errors, then check for warnings.
|
|
|
|
let errorList = filter(copy(eclimList), 'v:val.name =~ "^\\(qf_\\)\\?\\(error\\)$"')
|
|
|
|
|
|
|
|
if (empty(errorList))
|
|
|
|
" use the warnings
|
|
|
|
call filter(eclimList, 'v:val.name =~ "^\\(qf_\\)\\?\\(warning\\)$"')
|
|
|
|
let type = 'W'
|
|
|
|
else
|
|
|
|
" Use the errors
|
|
|
|
let eclimList = errorList
|
|
|
|
let type = 'E'
|
|
|
|
endif
|
2013-12-28 13:23:13 -05:00
|
|
|
|
|
|
|
if !empty(eclimList)
|
|
|
|
let errorsLine = eclimList[0]['line']
|
|
|
|
let errorsNumber = len(eclimList)
|
2014-10-31 17:30:24 -04:00
|
|
|
let errors = "[Eclim:" . type . " line:".string(errorsLine)." (".string(errorsNumber).")]"
|
2013-12-28 13:23:13 -05:00
|
|
|
if !exists(':SyntasticCheck') || SyntasticStatuslineFlag() == ''
|
|
|
|
return errors.(g:airline_symbols.space)
|
|
|
|
endif
|
2013-11-16 14:45:48 -05:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
return ''
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! airline#extensions#eclim#init(ext)
|
|
|
|
call airline#parts#define_function('eclim', 'airline#extensions#eclim#get_warnings')
|
|
|
|
call a:ext.add_statusline_func('airline#extensions#eclim#creat_line')
|
|
|
|
endfunction
|
|
|
|
|