Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio find out what command is assigned to an hotkey

I've installed a Visual Studio plugin that redefines some hotkeys. I need to come back to the standard hotkeys of Visual Studio for some of them. I know that under Tools->Options->Environment->Keyboard I can redefine the hotkeys, and I did it. The problem is that now it seems that my hotkey Ctrl-E, C has two command associated, the plugin one and the standard one. When I press that combination visual studio runs the plugin command and not the standard one.

The problem is that I don't know the plugin-command name so I can't dissociate it unless I go through all the command to see the associated hotkeys. Is there a way to discover commands associated to a specific hotkey?

like image 814
Tobia Zambon Avatar asked Dec 07 '12 13:12

Tobia Zambon


People also ask

How do I find the shortcut keys in Visual Studio?

The Global context means that the shortcut is applicable in any tool window in Visual Studio. You can look up the shortcut for any command by opening the Options dialog box, expanding the Environment node, and then choosing Keyboard.

How do I edit Visual Studio shortcuts?

On the menu bar, choose Tools > Options. Expand Environment, and then choose Keyboard. Optional: Filter the list of commands by entering all or part of the name of the command, without spaces, in the Show commands containing box. In the list, choose the command to which you want to assign a keyboard shortcut.

How do I find keyboard shortcuts?

Press Ctrl + Alt + ? on your keyboard. Keyboard shortcut overview is now open. Now try typing in the shortcut you are looking for. Thanks for your feedback!

What does Ctrl w do in Visual Studio?

How to use Ctrl+W to close a tab in Visual Studio – Done by code.


1 Answers

You can try to assign this shortcut to another command and then you will receive info that this shortuct is already used by [your command]:

enter image description here

like image 160
psur Avatar answered Jan 01 '23 20:01

psur