Turn off spell checking in Eclipse for good

Eclipse

Eclipse Problem Overview


Every time I create a new workspace in Eclipse I have to turn off the spell checking via Preferences. (Preferences->General->Editors->Text Editors->Spelling->Enable Spell Checking)

This is very irritating. How do I turn off the spell checking for good? I.e. the spell checker is disabled when I create a new workspace and I can turn it on should I want to use it.

Eclipse Solutions


Solution 1 - Eclipse

It's not a perfect fix, but you can copy existing workspace preferences into any workspace. I keep a separate .epf (Eclipse preferences file, I guess) that I just import into every new workspace I create:

File → Import... → General → Preferences → Next > From preference file

screenshot

Solution 2 - Eclipse

Preferences->General->Editors->Text Editors->Spelling Uncheck the box "Enable spell checking"

Solution 3 - Eclipse

There are some ways for sharing preferences, but it doesn't come with the platform. The one I use is now available as an attachment to https://bugs.eclipse.org/bugs/show_bug.cgi?id=334016 or more particular as attachment https://bugs.eclipse.org/bugs/attachment.cgi?id=196866

Install into your Eclipse. Then you can export selected preferences to an .epf file. Also add a preference (!) in Preferences > General > Common Preferences which will share your settings across newly created workspaces.

I use this all the time and though it is not perfect, it does save a lot of effort in keeping my preferences aligned across workspaces.

Solution 4 - Eclipse

If you are writing Java code, Window -> Preferences -> Java -> JDT Spelling

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestiondariusView Question on Stackoverflow
Solution 1 - EclipseMatt BallView Answer on Stackoverflow
Solution 2 - EclipseDavidView Answer on Stackoverflow
Solution 3 - EclipsefredrikView Answer on Stackoverflow
Solution 4 - EclipseWilliamView Answer on Stackoverflow