If you say yes, then I can say definitely you're a productive guy. If you rarely use keyboard shortcuts, then I can say your productivity suffers!! Time to wake up !!
Reduce your dependency on mouse. Get your hold on keyboard. You'll then definitely realize your increase in productivity and shows off your expertise with your co-workers.
Visual Studio environment offers many powerful features and options aimed to improve developer's productivity. I'll share few ubiquitous,important and quite unknown shortcuts/commands with you in this post.
Debug/Build commands:
- Build operation : Shift+Ctrl+B or F6
- Selective Build of any single project in the solution : Shift + F6
- Quick Watch window: Ctrl + D, Q
- Immediate Window: Ctrl + D, I
- Autos Window: Ctrl + D, A
- Callstack Window: Ctrl + D, C
- Start with Debugging: F5
- Start with out Debugging: Ctrl + F5
- Toggle Breakpoint: F9
- Enable/Disable Breakpoint: Ctrl+F9
- Debugging: Step into : F11
- Debugging: Step over : F10
- Debugging: Step out: Shift + F11
Visual Studio Window commands:
- ErrorList Window: Ctrl + W,E
- Output Window: Ctrl + W, O
- Solution Explorer Window: Ctrl + W, S
- Toolbox Window: Ctrl + W, X
- Command Window: Ctrl + W, A
- Code Definition Window: Ctrl + W, D or F12
- Server Explorer Window: Ctrl + W, L
- Properties Windows : F4 or Ctrl + W, P
- To close current active window in Visual studio: SHIFT + ESC
- To close current active tab in Visual Studio: Ctrl + F4
- To move between tabs/document windows in Visual Studio : Ctrl + TAB
Navigation shortcuts:
- GoTo a specific line number: Ctrl + G
- Find something among lines : Ctrl + F
- GoTo next matching item or next item in the search results: F8
- GoTo matching opening or closing brace in a large method: Ctrl + ]
- Navigate backward to previously browsed line of code: Ctrl + MINUS (-)
- Navigate forward to next browsed line of code: Ctrl + Shift + MINUS (-)
- Navigate to dropdown located at top of code editor : Ctrl + F2
- Replace command: Ctrl + H
- Comments selected lines of code: Ctrl + K, C
- Uncomments selected lines of code: Ctrl + K, U
- Formats selected lines of code : Ctrl + K , F
- Formats entire code document: Ctrl + K, D
- Replace in files : Ctrl + Shift + H
- Insert snippet: Ctrl + K, X
- Quick Info about piece of code : Ctrl + K, I
- Parameter info of specific method: Ctrl + K, P
- List members of specific object: Ctrl + K, L