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.
|
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. |
|||
|
|
|
|
SnippetsEach 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. |
|||
|
|
|
|
Showing hidden windows
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. |
|||
|
|
|
|
Ctrl+Alt+P -> Attach to process |
|||
|
|
|
|
F7 toggles from design view to code view. |
|||
|
|
|
|
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! |
|||
|
|
|
|
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. |
|||
|
|
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 |
|||
|
|
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! |
|||
|
|
|
|
Ctrl+- and Ctrl+Shift+-
Alt+D, P
Attach the debugger to the application.
Ctrl+Shift+F Ctrl+I (incremental seach) |
|||
|
|
Simple one. F8 : Go to next build error. |
||||
|
|
|
If you install Visual Assist X, which I highly recommend you do, these are useful:
|
|||
|
|
|
|
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.. |
|||
|
|
|
|
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.
|
|||
|
|
F7 to build and then F8 to go to the errors and warnings one by one. |
|||
|
|
|
|
Hmmm, nobody said F1 for help. |
|||
|
|
Alt + B + U - Build the current project. |
|||
|
|
VS 2008
|
|||
|
|
|
|
Some handy ones that I use often are: Ctrl+J -> Forces Intellisence to pop up. |
|||
|
|
|
|
Select word: Ctrl+W I can't live without that shortcut. Used over 100+ (or 200+) a day. |
|||
|
|
|
|
The ones I use all the time:
|
|||
|
|
|
|
Ctrl+Shift+F4 to close all windows. You have to map it yourself: Instructions:
Credit to Kyle Baley at codebetter.com. I modified his example to use shift instead of alt because it was easier on my hands. |
|||
|
|
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: |
|||
|
|
|
|
Ctrl+Shift+S |
|||
|
|
|
|
Alt+F4 ;) But on a more serious note, Ctrl+Space is probably hit a lot from me, in my limited usage of VS. |
|||
|
|
I've mapped File.Close to CTRL+SHIFT+W. That and CTRL+TAB mean you can close exactly whichever files you want. |
|||
|
|
|
|
Ctrl+Shift+R -> Refactor with Resharper |
|||
|
|
|
|
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! |
|||
|
|
Here are my favourite debugging keyboard shortcuts:
|
|||
|
|
|
|
Ctrl + BP (Previous bookmark), Ctrl + BN (Next bookmark) |
|||
|
|
|
|
Insert snippet: Ctrl+K, Ctrl+S I use if often for try..catch and #region |
|||
|
|