Reputation: 4784
When i type something and i want to open the little menu integrated in visual studio i press CTRL + .
Unfortunately this menu has very few options, and the things I need are in the Resharper menu (which is represented by the red lamp on left) I want him to generate empty method..
The way I do it now is by clicking on the lamp, and then choosing the option i want (like generate method, add readonly to field, convert to lambda ... )
I can't find a way to open that menu otherwise and i'm sure that some keyboard shortcut must exist.
I know that the question seems dumb, but it will save me lots of time in the long run :)
Thank and have a good day.
Upvotes: 3
Views: 1182
Reputation: 3563
The below extension is for VS2012 will helps you to see the available shortcuts. Sometimes this will suites for your needs
http://visualstudiogallery.msdn.microsoft.com/f2964c90-68e2-4ddd-861a-bd66e5cd4434
Upvotes: 0
Reputation: 9201
The Shortcut for Quick Fix is Alt + Enter, which is the same than add reference with the Visual Studio scheme.
You can change it in Tools->Options->Environment->Keyboard
, look for the command named ReSharper_QuickFix
(I also heard it was renamed to ReSharper_AltEnter
in some versions).
Upvotes: 7
Reputation: 4636
You want the Action List. To access it hit..
Alt + Enter
Here is the full list of R# commands
Here is more info on the Action List.
Upvotes: 5