Is there a shortcut key in Visual Studio that will minimize all of the regions or + signs so that I don’t have to go through and click each one individually?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Where C is short for
Ctrl. You can find more shortcuts at the msdn siteYou can find the commands by going to Keyboard Options under the Tools menu, they are mapped to these commands
C-m, C-o),C-m, C-m) andC-m, C-l)If you are using Visual Studio Code the commands are similar but work differently. The commands are roughly these
C-k 2– Fold Level 2C-k C-j– Unfold allC-k [– Unfold recursively (unfold where the caret is)You can search for Fold or Unfold commands (using
C-S-p) to find all of them.