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 + - 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. |
||||
|
|
|
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. |
||||
|
|
|
Expand Smart Tag (Resolve Menu): Ctrl + . (period) Expands the tag that shows when you do things like rename an identifier. |
||||||||
|
|
|
For me, it's nothing about auto completing code, matching parenthesis or showing some fancy tool panel. Instead, it's just about letting me see the code. With all the panels surrounding you, the area you use to actually write code becomes too small. |
||||
|
|
|
Ctrl+K, Ctrl+C Comment a block |
|||
|
|
Stock Visual Studio? F12 - Edit.GoToDefinition. Having DevExpress' Refactor! installed means that Ctrl-` is my all-time fave, though ;) |
|||
|
|
Ctrl+Shift+F Good old Find In Files. |
|||
|
|
Ctrl+Space, VS gives the possible completions |
|||
|
|
|
|
The TAB key for "snippets". E.g. type Results in:
which you can then expand. |
|||
|
|
|
|
Ctrl+] for matching braces and parentheses. |
|||
|
|
|
|
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. |
||||
|
|
|
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+K, Ctrl+D // Auto-(Re)Format See Also: Answer |
|||
|
|
VS 2005/2008 Keybinding posters:
These don't cover customizations but they're good reference materials and definitely helpful for finding new shortcuts. Also, a macro that dumps all the current bindings to a HTML file: |
|||
|
|
|
|
I like Ctrl+M, Ctrl+M. To expand/collapse the current code block. |
|||
|
|
|
|
CTRL+F5 (Start Without Debugging) CTRL+SHIFT+B (Build Solution) |
||||
|
|
|
Ctrl+Shift+V paste / cycle through the clipboard ring |
|||
|
|
Ctrl+C, Ctrl+V to duplicate the current line And, here is something even more interesting: |
|||
|
|
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. |
|||
|
|
Solution Explorer: Ctrl+Alt+L |
|||
|
|
|
|
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+R Tools.RecordTemporaryMacro (again to stop recording) Ctrl+Shift+P Tools.RunTemporaryMacro Beats the heck out of trying to work out a regexp search and replace! |
|||
|
|
|
|
Ctrl+R+T (Runs the current test) Ctrl+R+A (Runs all tests in the project) |
|||
|
|
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+Shift+S |
|||
|
|
|
|
By far the most useful (after Ctrl+Shift+B) are:
|
|||
|
|
Ctrl+I for incremental search |
|||
|
|
If 'Favorite' is measured by how often I use it, then: F10 : Debug.StepOver :) |
|||
|
|
|
|
Alt + B + U - Build the current project. |
|||
|
|
Shift+ESC This hides/closes any of the 'fake window' windows in Visual Studio. This includes things like the Solution Explorer, Object Browser, Output Window, Immediate window, Unit Test Windows etc. etc. and still applies whether they're pinned, floating, dockable or tabbed. Shortcut into a window (e.g. Ctrl + Alt + L or Ctrl + Alt + I) do what you need to do, and Shift + ESC to get rid of it. If you don't get rid of it, the only way to give it focus again is to use the same keyboard shortcut (or the mouse, which is what we're trying to avoid....) Once you get the hang of it, it's immensely useful. Grrr....The amount of times of hit Ctrl + F4 to close the 'window' only to see my current code window close was insane before I found this, now it only happens occasionally.. |
|||
|
|