Reputation:
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.
Upvotes: 1
Views: 2846
Reputation: 5650
There is a free Find Results Highlighter plugin for Visual Studio 2010.
Upvotes: 1
Reputation: 16907
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.)
Upvotes: 1
Reputation: 7341
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.
Upvotes: 3