vote up 90 vote down star
123

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

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

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

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

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

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

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

Ctrl+X

This deletes the current line of code.

link|flag
show 1 more comment
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+F10

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

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

Ctrl+Space, VS gives the possible completions

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

F9: toggle and un-toggle breakpoints!

link|flag
vote up 0 vote down

Save LOTS of time copy and cutting:

  • Ctrl+C with no selection in the line: copies the whole line

  • Ctrl+X with no selection - cuts the whole line
link|flag
show 2 more comments
vote up 1 vote down

I just found out that Shift+F11 steps out of the current function.

This is very useful when you want to debug function foo in foo(bar(baz()). Use F11, Shift+F11 to jump in and out of bar and baz.

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

Alt+Shift+ Arrow keys() or mouse moving = Block/Column selection

comes really handy

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

Ctrl+K, Ctrl+D - Format the current document.

Helped me fix indentation and remove unneeded spaces quickly

link|flag
vote up 0 vote down

"prop" and hit tab.. stubs out property for you...

link|flag
vote up 0 vote down

Ctrl+M, Ctrl+L will expand every collapsed bit of code. It is the opposite of Ctrl+M, Ctrl+O

link|flag
vote up 0 vote down

Turn line wrapping on and off

Ctrl+E, Ctrl+W

Sometimes you want to see the flow of the code with all of your indents in place; sometimes you need to see all 50 attributes in a GridView declaration. This lets you easily switch back and forth.

link|flag
vote up 0 vote down

Format document

   Ctrl+K, Ctrl+D
  1. On an aspx page, this takes care of properly indenting all of your markup and ensures that everything is XHTML compliant (adds quotes to attributes, corrects capitalization, closes self-closing tags). I find that this makes it much easier to find mismatched tags and to make sure that my markup makes sense. If you don't like how it's indenting, you can control which tags go on their own line and how much space they get around them under Tools/Options/Text Editor/HTML/Format/Tag Specific Options.

  2. In your C# or VB code, this will correct any capitalization or formatting issues that didn't get caught automatically.

  3. For CSS files, you can choose compact (one definition per line), semi-expanded, or expanded (each rule on its own line); and you can choose how it handles capitalization.

link|flag
vote up 0 vote down

Refresh javascript intellisense and code coloring.


ctrl+shift+J

I've found intellisense for Javascript to be flaky - this usually straightens it out.

link|flag
vote up 1 vote down

Find and replace

  • Ctrl+F and Ctrl+H - Find, Find & replace, respectively

  • Ctrl+shift+F and Ctrl+shift+H - Find in files, Find & replace in files, respectively

"Find in files" has been an enormous productivity booster for me. Rather than jump to each result one by one, it just shows you a list of results in your entire project or solution. It makes it very simple to find sample code, or see if a function is used anywhere.

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

Outlining

  • ctrl+M, ctrl+M - Collapse/expand current element

  • ctrl+M, ctrl+O - Collapse all (gives you a nice overview of a complex class, for example)

  • ctrl+M, ctrl+O - Toggle all

This works both in VB/C# code (e.g. collapse/expand a function) and in an aspx page (e.g. collapse/expand a GridView definition).

One very nice use of this is to cut or copy a big chunk of markup or code: For example, to move a big, sprawling <table> or <asp:gridview> definition:

  1. Go to the first line

  2. ctrl+M, ctrl+M to collapse it

  3. ctrl+X to cut it (you don't have to select it, as long as your insertion point is still in that line)

  4. Move to where you want it and ctrl+V to paste.
link|flag
vote up 2 vote down

Cutting and pasting lines

Everyone knows ctrl-X and ctrl-C for cutting/copying text; but did you know that in VS you don't have to select the text first if you want to cut or copy a single line? If nothing is selected, the whole line will be cut or copied.

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

Commenting

  • ctrl+K, ctrl+C - Comment current item

  • ctrl+K, ctrl+U - Uncomment current item

The great thing about this is that it applies to the element you're currently in - you don't have to select a whole line of VB code to comment it, for example, you just type ctrl-K, ctrl-C to comment the current line. On an aspx page, you can comment out a big chunk of code - for example an entire ListView - by just going to the first line and hitting ctrl-K, ctrl-C.

link|flag

Your Answer

Get an OpenID
or

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