Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installed Nodeclipse on Eclipse Kepler, cannot turn off Java spell check

I added Nodeclipse "Enide Studio 2014" plugins to the same Workspace as my Java projects (I usually don't do that).

My Node Perspective worked great, I created a new Node project and it all worked great.

Then I went back to my Java Perspective and noticed that all of my Java projects had spell check enabled - the annotations "sp" were on the left margin for mundane names for variables all over the place.

I made sure spell check was disabled globally (Window - Preferences - General - Editors - Text Editors - Spelling). Not enabled. But still there in all my Java projects. How to turn (back) off without uninstalling Nodeclipse?

like image 899
JasonH Avatar asked Dec 09 '14 20:12

JasonH


People also ask

How do I turn off spell check in eclipse?

I can turn off the spelling checker with Window, Preferences, General, Editors, Text Editors and uncheck Enable Spell checking.

How do you do spell check in eclipse?

Eclipse has a built-in Spell Checker. Go to Window > Preferences > General > Editors > Text Editors > Spelling to enable it.


1 Answers

First, you are adding plugins into Eclipse instance not workspace.
You can open workspace with different Eclipses,
and use the same Eclipse to open several workspaces in the same time.

Nodeclipse "Enide Studio 2014" comes with JDT-spelling, that checks for words inside Java names using conventions , see #30

To disable or configure go to

Window -> Preferences -> Java -> JDT Spelling

(or just search for "spell" in Preferences Dialog)

like image 84
Paul Verest Avatar answered Oct 06 '22 01:10

Paul Verest