vote up 89 vote down star
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.

flag
show 5 more comments

106 Answers

1 2 3 4 next
vote up 13 vote down

Ctrl+K, Ctrl+D // Auto-(Re)Format

See Also: Answer

link|flag
show 1 more comment
vote up 12 vote down

I like Ctrl+M, Ctrl+M. To expand/collapse the current code block.

link|flag
vote up 8 vote down

Solution Explorer: Ctrl+Alt+L

link|flag
vote up 29 vote down

Stock Visual Studio? F12 - Edit.GoToDefinition.

Having DevExpress' Refactor! installed means that Ctrl-` is my all-time fave, though ;)

link|flag
show 1 more comment
vote up 17 vote down

One that I use often but not many other people do is:

Shift + Alt + F10 then Enter

If you type in a class name like Collection<string> and do not have the proper namespace import then this shortcut combination will automatically insert the import (while the carret is immediately after the '>').

Update:

An equivalent shortcut from the comments on this answer (thanks asterite!):

Ctrl + .

Much more comfortable than my original recommendation.

link|flag
3  
You can do Ctrl + "." for the same purpose, and it's much, much more comfortable. – asterite Oct 27 '08 at 15:33
show 5 more comments
vote up 40 vote down

Expand Smart Tag (Resolve Menu): Ctrl + . (period)

Expands the tag that shows when you do things like rename an identifier.

link|flag
1  
This is my fave and only one I can remember. Alt-Enter is similar if you have resharper installed. – Daniel Mar 10 at 20:14
1  
Also Shift-Alt-F10 is bound to this but probably harder – Ruben Bartelink Jun 26 at 11:35
show 4 more comments
vote up 5 vote down

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.

link|flag
1  
Another way to do this is to use Alt+W+2. This is go back and forth. Also allows for 3 way action using Alt+W+3, if you can remember the right order. – Robin Robinson Aug 5 at 17:51
show 2 more comments
vote up 60 vote down

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.

link|flag
1  
Ctrl-Tab is a bit funny in VS for some reason - it doesn't just cycle like most apps. – Lucas Jones Jul 1 at 21:28
show 3 more comments
vote up 20 vote down

The TAB key for "snippets".

E.g. type try and then hit the tab key twice.

Results in:

try 
{	        

}
catch (Exception)
{

	throw;
}

which you can then expand.

link|flag
vote up 14 vote down

My favorite: F12 (go to definition) and Shift+F12 (find references).

The latter is useful with F8 (go to next result).

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.

link|flag
vote up 5 vote down

Ctrl+R+T (Runs the current test)

Ctrl+R+A (Runs all tests in the project)

link|flag
show 1 more comment
vote up 44 vote down

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.

link|flag
1  
One caveat with this that I've seen (in VS 2005 any way), it only searches through visible text. So if you have some collapsed in a region, for example, it won't search that. I don't know if this is a feature or a bug! – Adam Neal Jan 7 '09 at 21:00
show 3 more comments
vote up 0 vote down

Use Emacs-like keybinding, it's TAB :P

link|flag
vote up 16 vote down

Ctrl+] for matching braces and parentheses.

link|flag
vote up 0 vote down

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.

link|flag
show 1 more comment
vote up 4 vote down

Ctrl+I for incremental search

link|flag
show 2 more comments
vote up 1 vote down

Ctrl + Alt + E = Exception/Catch Settings and code snippets

link|flag
show 1 more comment
vote up -1 vote down

Ctrl+Shift+S // Save

Ctrl+Shift+B // Build

link|flag
show 1 more comment
vote up 12 vote down

CTRL+F5 (Start Without Debugging)

CTRL+SHIFT+B (Build Solution)

link|flag
3  
F7 is "build solution" for me. – korona Nov 7 '08 at 8:39
vote up 10 vote down

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.

link|flag
show 3 more comments
vote up 0 vote down

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

link|flag
vote up 32 vote down

Ctrl+K, Ctrl+C Comment a block

Ctrl+K, Ctrl+U Uncomment the block

link|flag
1  
Ctrl+K, CTRL+U also comments a block. – Maudite Oct 4 '08 at 19:22
1  
Ctrl-E, C and Ctrl-E, U also works. You dont have to release Ctrl after the first key either. – geofftnz Feb 9 at 20:24
show 4 more comments
vote up 1 vote down

I hate closing the extra tabs when I use "Start Debugging" on ASP.NET apps. Instead, I usually use "Start without Debugging" (Ctrl+F5).

If I end up needing to debug, I use Ctrl+Alt+P (Attach to Process)

and choose WebDev.WebServer.exe. Then I'm still on my previous page and I only have one tab open.

link|flag
show 1 more comment
vote up 0 vote down

Ctrl+K then Ctrl+H to add a line of code to the built in task/todo list

(Ctrl+Alt+K). Very handy!

link|flag
vote up 6 vote down

One that other editors should take up: Ctrl+C with nothing selected will copy the current line.

Most other editors will do nothing. After copying a line, pasting will place the line before the current one, even if you're in the middle of the line. Most other editors will start pasting from where you are, which is almost never what you want.

Duplicating a line is just: Hold Ctrl, press c, then v. (Ctrl+C, Ctrl+V)

link|flag
show 3 more comments
vote up 23 vote down

Ctrl+Shift+F

Good old Find In Files.

link|flag
show 1 more comment
vote up 4 vote down

If 'Favorite' is measured by how often I use it, then:

F10 : Debug.StepOver

:)

link|flag
vote up 10 vote down

Ctrl+C, Ctrl+V to duplicate the current line

Ctrl+L to delete the current line

Ctrl+F3 to search for the current selection

Ctrl+K, Ctrl+K to create a bookmark (which are useful)

Ctrl+K, Ctrl+N to go to the next bookmark

And, here is something even more interesting:
Press Ctrl+/ to put the cursor into a box where you can type commands.

For example, Pressing Ctrl+/ and type ">of ", now start typing the name of a file in your project, and it will autocomplete. This is a very fast way to open files in the current solution.

link|flag
show 6 more comments
vote up 1 vote down

Ctrl+[ (Move to corresponding })

Ctrl+Shift+V (Cycle clipboard)

link|flag
1 2 3 4 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.