Skip to content

Latest commit

 

History

History
64 lines (58 loc) · 3.11 KB

File metadata and controls

64 lines (58 loc) · 3.11 KB

Visual Studio 2017 most used shortcuts

Navigation

  • Open anything from the toolbar Alt + highlighted key in the toolbar
  • Open code window F7
  • Go to definition F12
  • Peek definition Alt + F12
  • Go to implementation Ctrl + F12
  • Find references Shift + F12
  • Call hierarchy Alt + Shift + H
  • Solution explorer Ctrl + Alt + L
  • Output Ctrl + Alt + O
  • Team explorer home Ctrl + 0 + H
  • Team explorer git changes Ctrl + 0 + G
  • Search file Ctrl + F
  • Search project Ctrl + Shift + F
  • Navigate backward Alt + Left
  • Navigate forward Alt + Right
  • Close current tab Ctrl + W
  • Switch tabs Ctrl + Tab
  • IDE search Ctrl + Shift + P
  • Symbol search Ctrl + ,
  • Zoom out Ctrl + -
  • Zoom in Ctrl + =
  • New item Alt + Shift + N
  • Next tab Ctrl + PgDown
  • Previous tab Ctrl + PgUp
  • Next method Ctrl + Shift + ]
  • Previous method Ctrl + Shift + [

Debugging

  • Build application Ctrl + Alt + Shift + F5
  • Debug application / resume F5
  • Stop application Shift + F5
  • Step into F11
  • Step over F10
  • Step out Shift + F11
  • Toggle breakpoint Ctrl + Shift + B
  • Breakpoint condition Ctrl + Alt + Shift + B
  • Autos window Ctrl + Alt + V, A
  • Locals window Ctrl + Alt + V, L

Editing

  • Toggle comment Ctrl + /
  • Expand current region Ctrl + Shift + =
  • Collapse current region Ctrl + Shift + -
  • Collapse to definition Ctrl + [
  • Expand all outlining Ctrl + ]
  • Complete word Ctrl + Space
  • Parameter info Ctrl + Shift + Space
  • Quick suggestion Ctrl + .
  • Rename code Alt + Shift + R
  • Rename file F2
  • Format document Alt + Shift + F
  • Delete line Shift + Del
  • Move line down Alt + Down
  • Move line up Alt + Up
  • Increase line indent Ctrl + Shift + .
  • Decrease line indent Ctrl + Shift + ,
  • List all members Ctrl + J
  • Quick info Ctrl + K, Ctrl + I