Reputation: 15704
Is there a way to get a list of all of the keyboard shortcuts that are currently set in VisualStudio? This would be a lot easier than surfing through all of the commands in the options window.
Upvotes: 4
Views: 735
Reputation: 2516
I'm using PowerConsole - extension that integrates Powershell console to Visual Studio. To get a list of all shortcuts, you would type following command in PowerConsole:
PS> $dte.Commands | ? { $_.Bindings } | % { Write-host $_.LocalizedName ';' $_.Bindings }
The result is a list of command names and corresponding keyboard shortcuts (semicolon separated), that you could, for example, export to Excel, and if you want to print out
Upvotes: 1
Reputation: 279
Here is the "official" list from Microsoft of all the default bindings in 2010. Has C++, VB.NET, C# and F#
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=92ced922-d505-457a-8c9c-84036160639f
Upvotes: -1
Reputation: 4687
Here's an example of one site that lists a good number of the short cut keys. I'm sure there are others.
http://www.dofactory.com/ShortCutKeys/ShortCutKeys.aspx
If you want to check the current bindings, there are articles about explaining how to do that:
http://msdn.microsoft.com/en-us/library/ms247076(v=VS.100).aspx
Note: This took me about 12 seconds to google...
Upvotes: 3