Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you turn off all caps on the menus in VS2012?

Tags:

The all caps in the menus for VS2012 is highly annoying, is there a setting somewhere in the IDE or elsewhere to turn it off?

like image 383
BlackICE Avatar asked Jun 14 '12 23:06

BlackICE


2 Answers

There is also another way to do this, create the following registry key and set its value:

HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0\General\SuppressUppercaseConversion
REG_DWORD value: 1
like image 85
BlackICE Avatar answered Oct 08 '22 22:10

BlackICE


You can also run this in the Power Shell

Set-ItemProperty -Path HKCU:\Software\Microsoft\VisualStudio\11.0\General -Name SuppressUppercaseConversion -Type DWord -Value 1
like image 20
Basic Avatar answered Oct 08 '22 21:10

Basic