Highlight all occurrences inside source code of an Identifier in Visual Studio - visual-studio-2010

Unfortunately now I am one of those people who are asking for help to find some individual setting inside Visual Studio but after quite a long time of searching I am simply giving up.
I need the following feature of both Visual Studio 2008 and 2010 turned on:
If you click an identifier in your source code Visual Studio will highlight all other occurrences of this identifier with Grey.

Maybe:
I can't test this out myself, can't tell if it's a MSVS feature or Visual Assist. You might need Intellisense enabled for this.

This extension of Visual Studio will Highlight all occurrences of selected word
http://visualstudiogallery.msdn.microsoft.com/4b92b6ad-f563-4705-8f7b-7f85ba3cc6bb

Related

Visual Studio does not highlight matching braces in JavaScript/TypeScript

My Visual Studio no longer highlights matching braces in JS/TS files. It works in C#. How to get it back?
Close Visual Studio and delete your user settings file (e.g. MyProject.csproj.user) in the porject folder. Worked for me!

How can I disable this pop-up that appears during hover in the Visual Studio editor?

I've already turned off many options in Visual Studio 2017, but I can't suppress this annoying pop-up. (Not this specific one, but all of them, for all the API's)
Can someone please show me the setting I need?
Check this old post How do I turn off code tooltips in Visual Studio 2010. In it a workaround is provided but you will probably make a new extension from the source for it to work in Visual Studio 2017.
Looks like there is no setting for this except for the C/C++ language.

How to enable ligatures in FiraCode for Visual Studio 2015

I downloaded the FiraCode font's and have selected that as my font in Visual Studio. However the ligatures are not showing and the wiki doesn't have any special instruction for visual studio, although they imply it works because it is listed in their WORKS column for editor support.
https://github.com/tonsky/FiraCode/
Anyone have the missing step(s) to display the ligatures in visual studio 2015?
Before it will work you will need to close and restart Visual Studio.
I ran into the same problem and this fixed it (details)
After installing the font and restarting Visual Studio, it works for the most part. The way that Visual Studio handles tokenization in the syntax highlighting breaks the ligatures containing dashes (such as <!-- -->).

Visual Studio 2013 - How to turn off auto-indentation in code editor?

There is a post that goes on about Visual Studio with 'intelligent' word wrap in How to make word wrap respect indentation in Visual Studio?
However - its a personal preference and can make code more unreadable in some cases.
In Visual Studio 2013 - this auto-indentation is default behavior.
How do you in Visual Studio 2013 turn this off?, so we get word-wrapping going back to the previous way - all-left aligned?
There doesn't appear to be an option in Visual Studio Options, or maybe I am missing something. If it is missing in Visual Studio Options, does anyone know of an add-in that will reset this auto-indentation?
I have VS2010 but try this:
Options/Text Editor/C#/Tabulations and then at identation block select none.
PS. You have to expand the options, if you select text editor it will show only the general options for text editor.

How to remove duplicate entries in Visual Studio Selector?

I'm using Visual C++ Express 2010. Weird thing, when I start *.sln file with "Microsoft Visual Studio Version Selector" (dblclick in explorer for example), I get 2 lines for each installed product.
Meaning duplicated (2010 and 10 are the same)
Visual C++ 2010
Visual C++ 10
How to remove one of them?
Screenshot of "About" dialog.
The values are probably in the registry. You should be able to figure out where the settings on with the help of Sysinternal's Process Monitor.
The Visual Studio Launcher is called VSLauncher.exe. If you filter for registry operations that are performed by that executable, it shouldn't be too hard to find.
.
I have made a github repo with the filter and the procmon events for your reference. Hope this helps.

Resources