How to highlight occurrences of a search term in text in Visual Studio? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T00:45:18Zhttp://stackoverflow.com/feeds/question/256931http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/256931/how-to-highlight-occurrences-of-a-search-term-in-text-in-visual-studio4How to highlight occurrences of a search term in text in Visual Studio?axk2008-11-02T14:40:56Z2008-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#2569402Answer by Andrew Theken for How to highlight occurrences of a search term in text in Visual Studio?Andrew Theken2008-11-02T14:49:52Z2008-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#2569412Answer by Eoin Campbell for How to highlight occurrences of a search term in text in Visual Studio?Eoin Campbell2008-11-02T14:50:33Z2008-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 & 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#2569517Answer by AlexDuggleby for How to highlight occurrences of a search term in text in Visual Studio?AlexDuggleby2008-11-02T15:05:16Z2008-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#3004072Answer by bydlo for How to highlight occurrences of a search term in text in Visual Studio?bydlo2008-11-18T22:39:25Z2008-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>