Highlight all references to X? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:24:35Z http://stackoverflow.com/feeds/question/352875 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/352875/highlight-all-references-to-x 3 Highlight all references to X? Winston Smith 2008-12-09T14:23:24Z 2008-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#352915 2 Answer by Bernhard Hofmann for Highlight all references to X? Bernhard Hofmann 2008-12-09T14:33:08Z 2008-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#352966 0 Answer by jjnguy for Highlight all references to X? jjnguy 2008-12-09T14:46:08Z 2008-12-09T14:46:08Z <p>Ctrl + F, Next, Next, ...</p> http://stackoverflow.com/questions/352875/highlight-all-references-to-x/353749#353749 1 Answer by Slapout for Highlight all references to X? Slapout 2008-12-09T18:30:58Z 2008-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#355231 1 Answer by Matt David for Highlight all references to X? Matt David 2008-12-10T06:20:08Z 2008-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>