How to highlight occurrences of a search term in text in Visual Studio? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T00:45:18Z http://stackoverflow.com/feeds/question/256931 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/256931/how-to-highlight-occurrences-of-a-search-term-in-text-in-visual-studio 4 How to highlight occurrences of a search term in text in Visual Studio? axk 2008-11-02T14:40:56Z 2008-11-18T22:39:25Z <p>How do I make all occurrences of a phrase (search term) in a file to be highlighted in the VS code editor?</p> http://stackoverflow.com/questions/256931/how-to-highlight-occurrences-of-a-search-term-in-text-in-visual-studio/256940#256940 2 Answer by Andrew Theken for How to highlight occurrences of a search term in text in Visual Studio? Andrew Theken 2008-11-02T14:49:52Z 2008-11-02T14:49:52Z <p>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.</p> http://stackoverflow.com/questions/256931/how-to-highlight-occurrences-of-a-search-term-in-text-in-visual-studio/256941#256941 2 Answer by Eoin Campbell for How to highlight occurrences of a search term in text in Visual Studio? Eoin Campbell 2008-11-02T14:50:33Z 2008-11-02T14:50:33Z <p>If you use the CTRL-i short cut, it'll do an inline incremental search. Keep pressing CTRL-i to jump to &amp; highlight each subsequent occurence in the file.</p> <p>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.</p> http://stackoverflow.com/questions/256931/how-to-highlight-occurrences-of-a-search-term-in-text-in-visual-studio/256951#256951 7 Answer by AlexDuggleby for How to highlight occurrences of a search term in text in Visual Studio? AlexDuggleby 2008-11-02T15:05:16Z 2008-11-02T15:05:16Z <p>Hi,</p> <p>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.</p> <p><a href="http://microsoftdev.blogspot.com/2008/05/rock-scroll-visual-studio-plugin.html" rel="nofollow">http://microsoftdev.blogspot.com/2008/05/rock-scroll-visual-studio-plugin.html</a></p> <p>Hope that helps, Alex</p> http://stackoverflow.com/questions/256931/how-to-highlight-occurrences-of-a-search-term-in-text-in-visual-studio/300407#300407 2 Answer by bydlo for How to highlight occurrences of a search term in text in Visual Studio? bydlo 2008-11-18T22:39:25Z 2008-11-18T22:39:25Z <p>ReSharper can do this with the Highlight Usages feature: <a href="http://www.jetbrains.com/resharper/documentation/help20/UsageSearch/highlightUsagesInFile.html" rel="nofollow">Highlight Usages In File</a></p> <p>Course, you need ReSharper ;)</p>