How to turn off CodeLens-References
Only workaround I found was un-checking the “enable codelens” option.
Only workaround I found was un-checking the “enable codelens” option.
There is a comment about this under this answer, but I think it’s important to list it here. If you want to preserve your settings, export them first because they will be lost. From MSDN forums – since I had to hunt around far too much to find the solution to this: Close Visual Studio … Read more
Visual Studio with C# key bindings To answer the specific question, in C# you are likely to be using the C# keyboard mapping scheme, which will use these hotkeys by default: Ctrl+E, Ctrl+D to format the entire document. Ctrl+E, Ctrl+F to format the selection. You can change these in menu Tools → Options → Environment … Read more
Richard Banks posted about a registry key for just such a tweak. Visual Studio 2012 (Full) HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0\General DWORD: SuppressUppercaseConversion Value: 1 In PowerShell, you can run this to set that registry key and the uppercase goes away. Set-ItemProperty -Path HKCU:\Software\Microsoft\VisualStudio\11.0\General -Name SuppressUppercaseConversion -Type DWord -Value 1 Visual Studio Express 2012 The above registry key is … Read more
I guess you probably are running the preview of VS2013 Ultimate, because it is not present in my professional preview. But looking online I found that the feature is called Code Information Indicators or CodeLens, and can be located under Tools → Options → Text Editor → All Languages → CodeLens (for RC/final version) or … Read more