filter() result error

This commit is contained in:
xinleibird 2014-03-22 14:41:48 +08:00
parent ab92a95969
commit 3bde2fabd1
1 changed files with 2 additions and 1 deletions

View File

@ -20,7 +20,8 @@ function! airline#extensions#eclim#get_warnings()
if !empty(eclimList)
" Remove any non-eclim signs (see eclim#display#signs#Update)
call filter(eclimList, "v:val.name =~ '^\(qf_\)\?\(error\|info\|warning\)$'")
" :help filter() ---- `the result **is zero** remove the item from the |List| or |Dictionary|.`
call filter(eclimList, "v:val.name != '^\(qf_\)\?\(error\|info\|warning\)$'")
if !empty(eclimList)
let errorsLine = eclimList[0]['line']