Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable real-time error and warning check in Eclipse

Tags:

eclipse

I find it distracting that Eclipse checks the code for errors and warnings during typing. Is it possible to change this behavior, so that it only checks when I'm done writing a line?

like image 942
Lenar Hoyt Avatar asked Dec 07 '11 19:12

Lenar Hoyt


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'.

like image 153
proko Avatar answered Nov 14 '22 20:11

proko