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.
|
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. |
|||
|
|
|
|
There are some great tips and trips and shortcuts on Sara Ford's blog. |
|||
|
|
|
|
By far the most useful (after Ctrl+Shift+B) are:
|
|||
|
|
F7 and Shift+F7 to switch between designer/code view Ctrl+Break to stop a build. Alt+Enter opens the resharper smart tag Bookmark ShortCuts The refactor shortcuts. |
|||
|
|
|
|
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.
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 |
|||
|
|
|
|
Ctrl+Shift+V paste / cycle through the clipboard ring |
|||
|
|
Ctrl+Shift+8 - Backtracks go to previous "F12/ Go to definition" |
|||
|
|
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. |
||||
|
|
|
Ctrl+- and Ctrl+Shift+-. But if you are a keyboard lover then go for Resharper |
|||
|
|
Ctrl+X This deletes the current line of code. |
|||
|
|
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 |
|||
|
|
|
|
Ctrl+F10 |
|||
|
|
|
|
Ctrl+M, Ctrl+O : collapse to definitions. I use it all the time together with #regions |
|||
|
|
Ctrl+Space, VS gives the possible completions |
|||
|
|
|
|
Nothing beats Ctrl+Shift+B - Building the solution!! As far as navigation control, Ctrl+- and Ctrl++ is nice... |
|||
|
|
The combination Ctrl+F3 and Ctrl+Shift+F3 for finding selected and previous selected item works very well for me. |
|||
|
|
|
|
Another useful Find short key sequence is Ctrl (+ Shift) F --> ALT C --> ALT W for switching between exact and fuzzy searches. |
|||
|
|
|
|
F9: toggle and un-toggle breakpoints! |
|||
|
|
|
|
Save LOTS of time copy and cutting:
|
|||
|
|
I just found out that Shift+F11 steps out of the current function. |
|||
|
|
Alt+Shift+ Arrow keys(←↑↓→) or mouse moving = Block/Column selection comes really handy |
|||
|
|
Ctrl+K, Ctrl+D - Format the current document. Helped me fix indentation and remove unneeded spaces quickly |
|||
|
|
|
|
"prop" and hit tab.. stubs out property for you... |
|||
|
|
|
|
Ctrl+M, Ctrl+L will expand every collapsed bit of code. It is the opposite of Ctrl+M, Ctrl+O |
|||
|
|
|
|
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. |
|||
|
|
|
|
Format documentCtrl+K, Ctrl+D
|
|||
|
|
|
|
Refresh javascript intellisense and code coloring.
I've found intellisense for Javascript to be flaky - this usually straightens it out. |
|||
|
|
|
|
Find and replace
"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. |
|||
|
|
Outlining
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
|
|||
|
|
|
|
Cutting and pasting linesEveryone knows |
|||
|
|
Commenting
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 |
|||
|
|