This there a way to change the color of spelling errors in Eclipse (Galileo)? The default red underlining is indistinguishable from t开发者_如何学编程he normal error underlining.
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".
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();
精彩评论