eclipse - How do I make TODOs not show up as errors in eclim? -


i started using eclim (combined youcompleteme), , it's great. there 1 thing that's bothering me, though, , can't figure out how fix it. syntax checker runs on file saves, good, shows todos in file errors. so, in error column on left side of window, error appears when there's todo in file. i've searched through of eclim's vim files, tried couple of eclim settings (g:eclimtodosearchpattern , g:eclimtodosearchextensions), , none of fixed problem. indeed, seems eclim's :projecttodo , :todo commands aren't what's causing this, because produce different kind of error , location list (different colors).

i'm thinking eclim gets list of issues eclipse, including eclipse's task tags (which in turn automatically generated todo text), , that's shows. tried find way eclipse not show task tag, unsuccessful. can task tags not show in "tasks" view in eclipse, can't them removed file itself. idea of can here? able see real syntax error eclim, fix it, , see left error bar go away, know don't have more compilation errors. don't want todo pretend it's compilation error.

well, found 1 way solve problem, though it's not totally ideal. eclim has "sign level" determines severity of message gets eclipse show in vim window. turns out eclipse's task tags show severity level "warning", if set sign level above "warning", task tags no longer show up. done following line in .vimrc:

let g:eclimsignlevel = 2 

it better if lower severity on eclipse side, still see other "warning" messages. there's setting somewhere...


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -