cseaton
cseaton

Reputation: 662

Change color of spelling errors in eclipse

This there a way to change the color of spelling errors in Eclipse (Galileo)? The default red underlining is indistinguishable from the normal error underlining.

Upvotes: 11

Views: 3928

Answers (2)

hariprasad
hariprasad

Reputation: 585

There is guide, how to do programmatically in RCP plugin. Java Code Examples for org.eclipse.jface.text.source.ISharedTextColors The color is not possible to set up in Marker (IMarker interface) nor in IPreferenceStore. It must be done due

ISharedTextColors sharedColors = EditorsPlugin.getDefault().getSharedTextColors();

Upvotes: 0

VonC
VonC

Reputation: 1329042

As mentioned in bug 157283, you can change the spelling error link:

Editors > Text Editors > Annotations, line "Spelling Errors"

The color you will choose for the "Native Problem Underline" will be different from the one used for regular "Errors".

Upvotes: 17

Related Questions