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

vote up 0 vote down

Snippets

Each snippet has a shortcut that you can access by typing a word then tab. The one I use the most is for a standard property definition; just type property then tab.

link|flag
vote up 1 vote down

Showing hidden windows

  • ctrl+alt+L + Solution explorer

  • ctrl+alt+S + Server explorer

  • ctrl+alt+O + Output

  • ctrl+alt+X + Toolbox

  • ctrl+shift+W, 1 + Watch

  • ctrl+\, E + Error list

  • ctrl+shift+C + Class view

I like to use all my screen real estate for code and have everything else hidden away. These shortcuts keep these windows handy when I need them, so they can be out of the way the rest of the time.

link|flag
vote up 3 vote down

Ctrl+Alt+P -> Attach to process

link|flag
vote up 0 vote down

F7 toggles from design view to code view.

link|flag
vote up 0 vote down

Open a file without using the mouse:

CTRL + ALT + A (opens command window) Followed by >open somedoc

I didn't see this one yet. Can't believe how many cool shortcuts have been posted here!

link|flag
vote up 0 vote down

Not a keyboard shortcut, but with your mouse, you can use forward and backwards buttons on your mouse to go to previous locations in your code and return to your current location.

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

Here's a link to a list of Shortcuts I find usefull (VS2003) but some still apply,

My favorite being F12 and Ctrl+- to navigate to the declaration and back

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

Ctrl+- and Ctrl+Shift+-

Alt+D, P Attach the debugger to the application.

(first letter of any application you want to debug, works most of the time)

Ctrl+Shift+F

Ctrl+I (incremental seach)

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

Simple one. F8 : Go to next build error.

Found that now it will work in any sort of list window (the ones that cluster together at the bottom usually.

link|flag
1  
and Shift F8 in reverse order – Ruben Bartelink Jul 1 at 21:34
show 1 more comment
vote up 1 vote down

If you install Visual Assist X, which I highly recommend you do, these are useful:

  • Alt+O: Toggle current document between header/implementation (.h/.cpp)

  • Alt+G: Go to definition/declaration

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

Alt+Shift+arrow keys(,,,)

This allow you to select things in a block. Like you could select all of the "int" in the block and then search and replace to double for example.

**int** x = 1;
**int** y = 2;
**int** z = 3;
link|flag
show 1 more comment
vote up 1 vote down

F7 to build and then F8 to go to the errors and warnings one by one.

link|flag
vote up 0 vote down

Hmmm, nobody said F1 for help.

Could it be that Google is faster and better for getting at the information that you need.

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

Alt + B + U - Build the current project.

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

VS 2008

  1. Ctrl+E,D : Format Code

  2. Ctrl+M,O : Collapse To Definitions

  3. Ctrl+Z : Undo :)

  4. F9: Breakpoint

  5. Ctrl+Shift+F9 : Delete All Breakpoints

link|flag
vote up 1 vote down

Some handy ones that I use often are:

Ctrl+J -> Forces Intellisence to pop up.

Ctrl+Alt+L -> Show the Solution Explorer.

link|flag
vote up 2 vote down

Select word: Ctrl+W

I can't live without that shortcut. Used over 100+ (or 200+) a day.

link|flag
vote up 0 vote down

The ones I use all the time:

  • ctrl+] Matching Brace

  • ctrl+shift+] Select to the end of brace

  • ctrl+shift+q Untabify

  • ctrl+k,ctrl+c comment out the currently selected block

  • ctrl+k,ctrl+u uncomment out the currently selected block

  • alt+mouse move vertical selection

  • ctrl+alt+x toolbox

  • ctrl+shift+b build

link|flag
vote up 0 vote down

Ctrl+Shift+F4 to close all windows. You have to map it yourself:

Instructions:

  • In Visual Studio, go to Tool | Options
  • Under Environment select Keyboard
  • In Show commands containing, enter Window.CloseAllDocuments. You should get a single entry in the listbox below it
  • Put the cursor in Press shortcut keys and press Ctrl+Shift+F4.
  • Click OK

Credit to Kyle Baley at codebetter.com. I modified his example to use shift instead of alt because it was easier on my hands.

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

Ctrl+Shift+S

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

link|flag
vote up 0 vote down

Alt+F4 ;)

But on a more serious note, Ctrl+Space is probably hit a lot from me, in my limited usage of VS.

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

I've mapped File.Close to CTRL+SHIFT+W. That and CTRL+TAB mean you can close exactly whichever files you want.

link|flag
vote up 0 vote down

Ctrl+Shift+R -> Refactor with Resharper

link|flag
vote up 0 vote down

Ctrl+ E + D : Format Document

Tip for teams: Set up agreed-on formatting options in Visual Studio (they are very flexible), then export the settings to a .settings file for each developer to import.

Now if all developers learn to autoformat everything, it will not only produce perfect formatting consistency throughout the project with no effort at all, but also greatly reduce annoying false differences in the diff tool when merging multiple check-ins to Source Control.

Oh, I enjoy good tools!

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

Here are my favourite debugging keyboard shortcuts:

  • F5 : start debugger / run to next breakpoint
  • Shift+F5 : stop debugging
  • F10 : step over next statement
  • F11 : step into next statement
  • Ctrl+F10: run to the cursor location
  • F9 : add or remove breakpoint
link|flag
vote up 2 vote down

Ctrl + BP (Previous bookmark), Ctrl + BN (Next bookmark)

link|flag
vote up 0 vote down

Insert snippet:

Ctrl+K, Ctrl+S

I use if often for try..catch and #region

link|flag

Your Answer

Get an OpenID
or

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