Pacerier
Pacerier

Reputation: 89623

How to stop Eclipse from "italizing" text in the text editor?

Hi all I was wondering if it is possible for eclipse to stop "italizing" the words in the editor?

These are my settings for General >> Appearance >> Colors and Fonts:

enter image description here

I've selected "Regular" style, however in eclipse it shows as this:

enter image description here

as can be seen, the BEST_DISPLAY_MODES and getBestDisplayMode are italized. Is there anyway to change that font to "regular" font?

Upvotes: 0

Views: 51

Answers (1)

Keith Layne
Keith Layne

Reputation: 3775

To change the settings for Java syntax highlighting (and similarly for other languages) got to Window->Preferences. From there expand Java->Editor->Syntax Coloring. There you will see options for colors and styles for each type of token that is colorized/styled. You should be able to fix it there.

enter image description here

Upvotes: 1

Related Questions