mirror of
https://github.com/vim-airline/vim-airline.git
synced 2024-11-23 09:01:22 +08:00
eclim: only consider signs placed by eclim
Ref: https://github.com/bling/vim-airline/pull/293
This commit is contained in:
parent
87951ba090
commit
ba899b2dde
|
@ -17,6 +17,11 @@ endfunction
|
|||
|
||||
function! airline#extensions#eclim#get_warnings()
|
||||
let eclimList = eclim#display#signs#GetExisting()
|
||||
|
||||
if !empty(eclimList)
|
||||
" Remove any non-eclim signs (see eclim#display#signs#Update)
|
||||
call filter(eclimList, "v:val.name =~ '^\(qf_\)\?\(error\|info\|warning\)$'")
|
||||
|
||||
if !empty(eclimList)
|
||||
let errorsLine = eclimList[0]['line']
|
||||
let errorsNumber = len(eclimList)
|
||||
|
@ -25,6 +30,7 @@ function! airline#extensions#eclim#get_warnings()
|
|||
return errors.(g:airline_symbols.space)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
return ''
|
||||
endfunction
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user