I'm trying to prevent Visual Studio 2015 from colorizing code blocks when at a breakpoint within a lambda expression.
(Screen shot below).
It's very distracting for me, and I would like to prevent this behavior, but can't figure out how to either A) prevent it altogether, or B) change the background color that it's using to black so that the effect is invisible.
I'd greatly appreciate any insight.
To reproduce it, just enter this code, set a breakpoint at the "for" loop, and run it. When the breakpoint is hit, the entire Lambda expression will colorize as shown below (exact colors dependent on your color scheme, presumably).
public delegate void funcType();
static void Main(string[] args)
{
((funcType)(() =>
{
for (int i=0; i< 10; i++) // <<== Set Breakpoint Here, and run to it
{
Console.WriteLine("Test line to show colorization.");
}
}))();
}
Per Hans Passant's question, here are all the Extensions that are installed in Studio 2015.
It's important to note that this is NOT an EDITOR issue. This happens at runtime only, when the DEBUGGER stops at a breakpoint inside a Lambda expression.
Active Statement
display item in Text Editor settings. Does Visual Studio 2015 have this display item? – Lunisolar