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.
|
119
|
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+K, Ctrl+D // Auto-(Re)Format See Also: Answer |
|||
|
|
I like Ctrl+M, Ctrl+M. To expand/collapse the current code block. |
|||
|
|
|
|
Solution Explorer: Ctrl+Alt+L |
|||
|
|
|
|
Stock Visual Studio? F12 - Edit.GoToDefinition. Having DevExpress' Refactor! installed means that Ctrl-` is my all-time fave, though ;) |
|||
|
|
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. |
||||
|
|
|
Expand Smart Tag (Resolve Menu): Ctrl + . (period) Expands the tag that shows when you do things like rename an identifier. |
||||||||
|
|
|
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. |
||||
|
|
|
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. |
||||
|
|
|
The TAB key for "snippets". E.g. type Results in:
which you can then expand. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Ctrl+R+T (Runs the current test) Ctrl+R+A (Runs all tests in the project) |
|||
|
|
Ctrl+Shift+B - Build |
|||
|
|
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. |
||||
|
|
|
Use Emacs-like keybinding, it's TAB :P |
|||
|
|
|
|
Ctrl+] for matching braces and parentheses. |
|||
|
|
|
|
What Ray said. Ctrl +. I really didn't like the smart tags (those little blue and red underscores that appear wanting to help you) until I found out that you don't need to waste time trying to hover the mouse over the exact pixel that gets the menu to show. I think Ctrl+. to open the smart tag menu saves me about five minutes every day and reduces my blood pressure considerably. |
|||
|
|
Ctrl+I for incremental search |
|||
|
|
Ctrl + Alt + E = Exception/Catch Settings and code snippets |
|||
|
|
Ctrl+Shift+S // Save Ctrl+Shift+B // Build |
|||
|
|
CTRL+F5 (Start Without Debugging) CTRL+SHIFT+B (Build Solution) |
||||
|
|
|
Ctrl+M, O. Can collapse and expand all sections of code in a particular file. I suggest a cheat sheet, by the way: I have these things as well as the Resharper cheat sheet by my desk permanently. |
|||
|
|
I have two that I use a lot, the first is standard, the second you have to map: Ctrl+A, Ctrl+E, F (Select All, Format Selection) Ctrl+E, R (Remove Unused Usings and Sort) Both help pay down the "cruft debt" early and often |
|||
|
|
|
|
Ctrl+K, Ctrl+C Comment a block |
|||
|
|
I hate closing the extra tabs when I use "Start Debugging" on ASP.NET apps. Instead, I usually use "Start without Debugging" (Ctrl+F5). |
|||
|
|
Ctrl+K then Ctrl+H to add a line of code to the built in task/todo list |
|||
|
|
|
|
One that other editors should take up:
Ctrl+C with nothing selected will copy the current line. Duplicating a line is just: Hold Ctrl, press c, then v. (Ctrl+C, Ctrl+V) |
|||
|
|
Ctrl+Shift+F Good old Find In Files. |
|||
|
|
If 'Favorite' is measured by how often I use it, then: F10 : Debug.StepOver :) |
|||
|
|
|
|
Ctrl+C, Ctrl+V to duplicate the current line And, here is something even more interesting: |
|||
|
|
Ctrl+[ (Move to corresponding }) |
|||
|
|