My fault, it's a transferred error, add a '\' that' works fine.

This commit is contained in:
xinleibird 2014-03-22 16:16:27 +08:00
parent 3bde2fabd1
commit 3c66f13b9a
1 changed files with 1 additions and 2 deletions

View File

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