What is your favorite Visual Studio keyboard shortcut? I'm always up for leaving my hands on the keyboard and away from the mouse!
One per answer please.
|
115
|
What is your favorite Visual Studio keyboard shortcut? I'm always up for leaving my hands on the keyboard and away from the mouse! One per answer please. |
|||
|
|
|
|
Ctrl+] for matching braces and parentheses. |
|||
|
|
|
|
Use Emacs-like keybinding, it's TAB :P |
|||
|
|
|
|
Incremental Search - Ctrl + I It's basically the find dialog box without the dialog box. Just start typing what you want to search for (look at the bottom status bar location to see what you've typed). Pressing Ctrl + I again or F3 searches for the next instance. Press Escape to quit. Starting a new search by pressing Ctrl + I twice repeats the last search. |
||||
|
|
|
Ctrl+Shift+B - Build |
|||
|
|
Ctrl+R+T (Runs the current test) Ctrl+R+A (Runs all tests in the project) |
|||
|
|
My favorite: F12 (go to definition) and Shift+F12 (find references). Ctrl+- and Ctrl+Shift+- are mapped to my mouse's back and forwards buttons. Ctrl+. is useful too, especially for adding event handlers and "using" statements. |
|||
|
|
|
|
The TAB key for "snippets". E.g. type Results in:
which you can then expand. |
|||
|
|
|
|
Ctrl + - and the opposite Ctrl + Shift + - Move cursor back (or forwards) to the last place it was. No more scrolling back or PgUp/Dwn to find out where you were. Ctrl + tab Switches open windows in VS. |
||||
|
|
|
Good old Ctrl+Tab for flipping back and forth between open documents. Visual Studio actually provides a very nice Ctrl+Tab implementation; I especially appreciate that the Ctrl+Tab document activation order is most-recently-used order, rather than simple "left-to-right" order, so that Ctrl+Tab (press once and release) can be used repeatedly to flip back and forth between the two most-recently-used documents, even when there are more than two documents open. |
||||
|
|
|
Expand Smart Tag (Resolve Menu): Ctrl + . (period) Expands the tag that shows when you do things like rename an identifier. |
||||||||
|
|
|
One that I use often but not many other people do is:
If you type in a class name like Update: An equivalent shortcut from the comments on this answer (thanks asterite!):
Much more comfortable than my original recommendation. |
||||
|
|
|
Stock Visual Studio? F12 - Edit.GoToDefinition. Having DevExpress' Refactor! installed means that Ctrl-` is my all-time fave, though ;) |
|||
|
|
Solution Explorer: Ctrl+Alt+L |
|||
|
|
|
|
I like Ctrl+M, Ctrl+M. To expand/collapse the current code block. |
|||
|
|
|
|
Ctrl+K, Ctrl+D // Auto-(Re)Format See Also: Answer |
|||