Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Shortcut key for refactoring menu (rename, "using", etc.) in Visual Studio 2008?

Is there any way to bind a keyboard shortcut to first option in the refactoring menu that appears automatically while you're coding in Visual Studio 2008?

like image 868
user541686 Avatar asked Jan 21 '12 23:01

user541686


People also ask

How do I refactor variable name in Visual Studio?

Select Edit > Refactor > Rename. Right-click the code and select Rename.

What is Ctrl Shift F in Visual Studio?

Ctrl-Shift-F is used to find all the ocuurance of a string with in entire solution and display find result window as shown below. Ctrl-F is used to find a string in the current document, project and all open documents one by one.

What is Ctrl D in VS Code?

Ctrl+D selects the word at the cursor, or the next occurrence of the current selection. Tip: You can also add more cursors with Ctrl+Shift+L, which will add a selection at each occurrence of the current selected text.


1 Answers

The shortcut key for Visual Studio is Ctrl + .

If your using DevExpress' CodeRush, it'll be Ctrl + ~, though this is configurable.

In Resharper, the key combo is alt + enter, which executes the ReSharper_QuickFix command.

like image 62
Alex Avatar answered Oct 01 '22 04:10

Alex