Phil.Wheeler
Phil.Wheeler

Reputation: 16858

Visual Studio IDE Customisation - Breakpoint string highlighting

I'm trying to make my IDE fonts and colours more visible, but I'm stuck on one last detail: the string highlighting for selected breakpoints.

Given the following example:

Session["mySessionVar"] = someValue;

The text for "mySessionVar" - including the quote marks - has (in my case) yellow text on a bright pink background - almost impossible to read. My problem is I can't find any way to set the Breakpoint (Enabled) strings, keys or parameters to a more readable setting.

Can it even be done?

Upvotes: 1

Views: 535

Answers (1)

Noah Richards
Noah Richards

Reputation: 6867

I'm guessing you've tried changing the various "Breakpoint" settings in Tools->Options->Environment->Fonts and Colors, but even those wouldn't leave the string a different color than any other text in the breakpoint. The intent, for breakpoints, is that the foreground color of everything in the breakpoint is overridden by the breakpoint foreground color.

Do you have an extension installed that changes the formatting for comments, or did you get into this state just from changing around options in Fonts and Colors?

Upvotes: 2

Related Questions