Wenfengcheng / xamarin-notes

xamarin journal
MIT License
3 stars 0 forks source link

Keyboard shortcuts in Visual studio for Mac #16

Open Wenfengcheng opened 5 years ago

Wenfengcheng commented 5 years ago

Sometimes you just need to find the references of the specified object. In this case, simply press Cmd + Shift + R or Shift + F12

Whenever you want to go to the object/type declaration press Cmd + mouse click or F12 or Cmd+D

When having a cursor in a line just press Cmd + \ or F9 so the breakpoint will appear.

In case you want to disable/enable this breakpoint simply press Cmd + Alt + / or Cmd + F9

When the breakpoint is hit and you want to step into the definition simply press. Shift + Cmd + I

Maybe you want to go to the next line of code? No problem: Shift + Cmd + O / F10

Do you want to step out of function? No problem: Shift + Cmd + U

Or maybe you just want to continue the program without further debugging? Cmd + enter

So whenever you want to format your code just press Ctrl + I

https://codeburst.io/keyboard-shortcuts-in-visual-studio-for-mac-1c09c5e051e8