up vote 9 down vote favorite
4
share [g+] share [fb]

How do I make all occurrences of a phrase (search term) in a file to be highlighted in the VS code editor?

link|improve this question

68% accept rate
feedback

8 Answers

up vote 3 down vote accepted

When you run a "find" you can click "bookmark all" which will identify on the left which lines the search terms occur on, but you can't "highlight" the elements using visual studio, out of the box.

link|improve this answer
I use this but in one case, all the occurences I wanted were on the same line of code, so it only bookmarked the one line :/ – JohnnyBizzle Dec 14 '10 at 13:46
feedback

I noticed that a nice side effect of the Rock-Scroll plugin is that when you double-click a keyword it highlights all occurrences in the file (and in the rock scroll preview) as well.

http://microsoftdev.blogspot.com/2008/05/rock-scroll-visual-studio-plugin.html

Hope that helps, Alex

link|improve this answer
Thanks! I'll check it out. – axk Nov 2 '08 at 17:40
That's awesome, thanks! – Michael Haren Jun 29 '09 at 15:35
1  
This will save me from having to use Notepad++ so much. – NitroxDM Jun 7 '11 at 19:22
feedback

ReSharper can do this with the Highlight Usages feature: Highlight Usages In File

Course, you need ReSharper ;)

link|improve this answer
That doesen't work in .js files :-( – 7wp Feb 1 '10 at 21:23
feedback

If you use the CTRL-i short cut, it'll do an inline incremental search. Keep pressing CTRL-i to jump to & highlight each subsequent occurence in the file.

I'm not sure that you can highlight all occurences at once. It may be possible with a plugin like ReSharper but not that I'm aware of.

link|improve this answer
1  
That's exactly what I was looking for! – Jacob Sep 29 '09 at 18:26
feedback

I have just done a quick google for this very feature.

Came up with these results

VS 2008 http://visualstudiogallery.msdn.microsoft.com/en-us/ad686131-47d4-4c13-ada2-5b1a9019fb6f

VS 2010 http://visualstudiogallery.msdn.microsoft.com/en-us/4b92b6ad-f563-4705-8f7b-7f85ba3cc6bb

link|improve this answer
feedback

Microsoft has an (actually) useful VS plugin which solves this issue.

Power Tools: http://visualstudiogallery.msdn.microsoft.com/d0d33361-18e2-46c0-8ff2-4adea1e34fef/

Once installed (restart VS afterwards), either highlight a section of text an hit CTRL+F to iterate all occurrences, or highlight text and let VS mark all matches for you in syntax highlighting.

link|improve this answer
Hmmm....with the improved Find/Replace UI, it's a lot more streamlined than I expected (hit escape to dismiss the toast and un-highlight the terms), but I still miss [Rock|Metal]Scroll's immediate highlighting of terms on double-click. – Cheezmeister Jul 20 '11 at 14:42
feedback

I copied and pasted the source code into Word 2007. This has highlight all option called 'Reading Highlight'. This keeps the highlighting on even when you search for another term.

link|improve this answer
feedback

I open the file in Notepad++ and VS.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.