Visual Studio addin; highlight all words that match the selected word?

When using NotePad ++ and selecting a specific word, does it automatically highlight all matched words?

alt text

Does anyone know if there is a Visual Studio add-on that can do this? or is there a hidden environment setting that can do this?

+4
source share
3 answers

This is what VS 2010 runs automatically, but if you are using an older version of VS, you can get this functionality with third-party add-ons. For example, I used an add-in called RockScroll, which can highlight the use in the source file (by double-clicking on the word) http://www.hanselman.com/blog/IntroducingRockScroll.aspx ,

Also, ReSharper has built-in functionality with Cntl + Shft + F7

+2
source

Check the following add-ons Performance Addin Power Tools
The backlight color in Powerivity Power Tools is located in
Tools-> Options-> Productivity Power Tools-> Enhanced Scroll Bar-> Words Matching Color Color Care Editor in the editor.

or

Use Select Selected Word .

+7
source

I believe Visual Assist can do this. This can be enabled in the settings β†’ Refactoring β†’ Automatically select links to the symbol under the cursor.

alt text

+3
source

Source: https://habr.com/ru/post/1332162/


All Articles