Highlight all references to X? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T10:24:35Zhttp://stackoverflow.com/feeds/question/352875http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/352875/highlight-all-references-to-x3Highlight all references to X?Winston Smith2008-12-09T14:23:24Z2008-12-23T14:54:32Z
<p>The Eclipse IDE has a neat little feature that I really miss in Visual Studio.</p>
<p>If I place the cursor on a variable or method name, the IDE will automatically highlight all references to it in the current document within the relevant scope.</p>
<p>I can't seem to find an option to turn on similar behaviour in VS2008 or Resharper 4. I know VS has a Find Usages function, but I'd like to do it automatically on the fly.</p>
<p>Does anyone know of a free addin which will add this functionality?</p>
http://stackoverflow.com/questions/352875/highlight-all-references-to-x/352915#3529152Answer by Bernhard Hofmann for Highlight all references to X?Bernhard Hofmann2008-12-09T14:33:08Z2008-12-09T14:53:12Z<p>If you're using ReSharper, you can highlight the usages in the file with Shift-Alt-F11. Place your cursor on the variable you want to find usages of, and press the Shift-Alt-F11 combination.</p>
http://stackoverflow.com/questions/352875/highlight-all-references-to-x/352966#3529660Answer by jjnguy for Highlight all references to X?jjnguy2008-12-09T14:46:08Z2008-12-09T14:46:08Z<p>Ctrl + F, Next, Next, ...</p>
http://stackoverflow.com/questions/352875/highlight-all-references-to-x/353749#3537491Answer by Slapout for Highlight all references to X?Slapout2008-12-09T18:30:58Z2008-12-09T18:30:58Z<p>There is an add-in for Visual Studio that will do something similar called <a href="http://www.hanselman.com/blog/IntroducingRockScroll.aspx" rel="nofollow">RockScroll</a>.
When you double click on something, it will highlight all occurrences of the item you double clicked. It also changes the vertical scrollbar to a "syntax highlighted thumbnail view" showing an overview of where the item occurs in the file.</p>
http://stackoverflow.com/questions/352875/highlight-all-references-to-x/355231#3552311Answer by Matt David for Highlight all references to X?Matt David2008-12-10T06:20:08Z2008-12-10T06:20:08Z<p>I know you mentioned ReSharper, but CodeRush has a nice references window that you can dock and let it search for things on-the-fly or on demand. As a bonus, you can select each usage and it will show you the context surrounding the usage. It also works for methods.</p>
<p>I mentioned CodeRush since they have an <a href="http://www.devexpress.com/Products/Visual_Studio_Add-in/CodeRushX/" rel="nofollow">express edition</a>, which looks like it includes that feature, but I haven't tried that edition.</p>