views:

73

answers:

2

Is there any way to highlight search results in Visual Studio? Note, I'm specifically asking about the "Find Results" window. An example of what I'm looking for is the GNU grep --color option.

+1  A: 

This feature isn't available in VS, all what you can do is to use "Bookmark all" button in the Find dialog (expand "Find options" to see the button).

Or you can use a plugin to do that, such as ReSharper Highlight Usages in File feature.

Moayad Mardini
A: 

The new coderush express does highlighting on a term if you tab over it. So if you want to tab through all instances of p_fooOBJECT, put the cursor in p_fooOBJECT and hit tab and they will all be underlined (or eles I completely misundersttod your question.)

kpierce8