vote up 92 vote down star
124

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

vote up 0 vote down

Another useful Find short key sequence is Ctrl (+ Shift) F --> ALT C --> ALT W for switching between exact and fuzzy searches.

link|flag
vote up 3 vote down

The combination Ctrl+F3 and Ctrl+Shift+F3 for finding selected and previous selected item works very well for me.

link|flag
vote up -1 vote down

Nothing beats Ctrl+Shift+B - Building the solution!!

As far as navigation control, Ctrl+- and Ctrl++ is nice...

But I prefer Ctrl+K+K ---> creates bookmark...

and Ctrl+K+N ---> to navigate to the next bookmark... awesome stuff...

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

Ctrl+Space, VS gives the possible completions

link|flag
vote up 1 vote down

Ctrl+M, Ctrl+O : collapse to definitions. I use it all the time together with #regions

(despite what Jeff says) to get an overview of the code on my screen.

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

Ctrl+F10

run to cursor when debugging. Looked for this for ages before I found the keyboard shortcut...

link|flag
vote up 2 vote down

I like my code clean and arranged so my favorite keyboard shortcuts are the following:

Ctrl+E,D - Format document

Ctrl+K,F - Format selected code

Ctrl+E,S - Show white spaces

Ctrl+L - Cut line

Alt+Enter - Insert line below

link|flag
vote up 1 vote down

Ctrl+X

This deletes the current line of code.

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

Ctrl+- and Ctrl+Shift+-. But if you are a keyboard lover then go for Resharper

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

Ctrl+Shift+8 - Backtracks go to previous "F12/ Go to definition"

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

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

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

If you have your keyboard settings set to the "Visual C# 2005" setting, the window switching and text editing chords are excellent. You hit the first combination of Ctrl + Key, then release and hit the next letter.

  • Ctrl+E, C: Comment Selected Text

  • Ctrl+E, U: Uncomment Selected Text

  • Ctrl+W, E: Show Error List

  • Ctrl+W, J: Show Object Browser

  • Ctrl+W, S: Show Solution Explorer

  • Ctrl+W, X: Show Toolbox

I still use F4 to show the properties pane so I don't know the chord for that one.

If you go to the Tools > Customise menu option and press the Keyboard button, it gives you a list of commands you can search to see if a shortcut is available, or you can select the "Press Shortcut Keys:" textbox and test shortcut keys you want to assign to see if they conflict.

Addendum: I just found another great one that I think I'll be using quite frequently: Ctrl+K, S

pops up an intellisense box asking you what you would like to surround the selected text with. It's exactly what I've needed all those times I've needed to wrap a block in a conditional or a try/catch.

link|flag
vote up 0 vote down

F7 and Shift+F7 to switch between designer/code view

Ctrl+Break to stop a build.

Great for those "oh, I realized this won't compile and I don't want to waste my time" moments.

Alt+Enter opens the resharper smart tag

Bookmark ShortCuts

Ctrl+K Ctrl+K to place a bookmark

Ctrl+K Ctrl+N to go to next bookmark

Ctrl+K Ctrl+P to go to previous bookmark

The refactor shortcuts.

Each starts with Ctrl+R.

Follow it with Ctrl+R for rename. Ctrl+M for extract method. Ctrl+E for encapsulate field.

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

There are some great tips and trips and shortcuts on Sara Ford's blog.

link|flag
vote up 1 vote down

Ctrl+[ (Move to corresponding })

Ctrl+Shift+V (Cycle clipboard)

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

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

F10 : Debug.StepOver

:)

link|flag
vote up 23 vote down

Ctrl+Shift+F

Good old Find In Files.

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

Ctrl+Shift+S // Save

Ctrl+Shift+B // Build

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

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

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

Ctrl+I for incremental search

link|flag
show 2 more comments

Your Answer

Get an OpenID
or

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