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

flag
show 5 more comments

105 Answers

1 2 3 4 next
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 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 at 21:00
show 3 more comments
vote up 39 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 36 vote down

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.

In this cases, Shift+Alt+Enter comes in to the rescue and gets the code

window in focus in full screen mode. Hit it again, and you have all the panels back ;)

link|flag
2  
BIG monitors work too =) – LuckyLindy Mar 11 at 1:33
show 3 more comments
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 28 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 23 vote down

Ctrl+Shift+F

Good old Find In Files.

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

Ctrl+Space, VS gives the possible completions

link|flag
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 16 vote down

Ctrl+] for matching braces and parentheses.

link|flag
vote up 16 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 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 13 vote down

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

See Also: Answer

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

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:

http://www.codinghorror.com/blog/archives/000315.html

link|flag
vote up 12 vote down

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

link|flag
vote up 12 vote down

CTRL+F5 (Start Without Debugging)

CTRL+SHIFT+B (Build Solution)

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

Ctrl+Shift+V paste / cycle through the clipboard ring

link|flag
show 1 more comment
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 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 8 vote down

Solution Explorer: Ctrl+Alt+L

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 5 vote down

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!

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 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 4 vote down

Ctrl+Shift+S

Save all changed files. saved me quite a few times.

link|flag
vote up 4 vote down

By far the most useful (after Ctrl+Shift+B) are:

  • Ctrl+K, C - to Comment out selection

  • Ctrl+k, U - to Uncomment a selection
link|flag
show 2 more comments
vote up 4 vote down

Ctrl+I for incremental search

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

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

F10 : Debug.StepOver

:)

link|flag
vote up 3 vote down

Alt + B + U - Build the current project.

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

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..

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.