Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to delay Eclipse error warnings

Tags:

java

eclipse

I find the error warnings in Eclipse helpful. But the problem is they show up too early when I'm still typing and haven't finished the line of code at hand. This is distracting. How can I delay the error warnings so that they don't show up until I've finished a line and move to the next line?

like image 992
Gropai Avatar asked Oct 30 '22 22:10

Gropai


1 Answers

If you were talking about java code, the checkbox can be found via 'Preferences - Java - Editor' -> 'Report problems as you type'.

String tmp =             // no syntax error here
String tmp = ;           // line end -> syntax error

For other editors use 'General - Editors - Structured Text Editors'-> 'Report problems as you type'. It's not necessary to deactivate 'build automatically'.

Answer is from this similar question by proko

like image 168
Jishnu Prathap Avatar answered Nov 15 '22 04:11

Jishnu Prathap