In Visual Studio (2008) there a command to collapse/expand all the sections of code in a file?

link|improve this question

67% accept rate
feedback

8 Answers

up vote 169 down vote accepted

CTRL + M + O will collapse all.

CTRL + M + L will expand all.

CTRL + M + P will expand all and disable outlining.

CTRL + M + M will collapse/expand the current section.

These options are also in the context menu under Outlining.

link|improve this answer
10  
You can also right click in the editor an select: Outlining -> Toggle All Outlining – LBushkin Jun 11 '09 at 18:11
1  
double-check your expand all - i think it should be M+L and not M+P. – Scott Ivey Jun 11 '09 at 18:16
I just gave L a try, that works too, thanks, I'll update my post – Bob Jun 11 '09 at 18:18
+1 - good answer – Scott Ivey Jun 11 '09 at 18:21
5  
ctrl+m ctrl+o is "collapse to definitions" which doesn't work when editting an xml file. For me ctrl+m ctrl+l expands all and collapses all (as toggle), but not always. I have one file open where it works and one where it only expands all, but not collapse all. Both are xml files. No idea why. – Matthijs Wessels Jan 13 '10 at 13:07
show 4 more comments
feedback

Ctrl-M, Ctrl-L collapses/expands (toggles) all regions.

link|improve this answer
2  
This doesn't work for my under VB.NET; it's not recursive. – Richard Morgan Jun 11 '09 at 18:12
But it is only useful command when using js outlining extension, and I have 1000+ lines js file, this shortcut is a** saver! – Goran Obradovic Oct 21 '11 at 8:53
feedback
  • Fold/Unfold the current code block – Ctrl+M, Ctrl+M
  • Unfold all – Ctrl+M, Ctrl+L
  • Stop outlining – Ctrl+M, Ctrl+P
  • Fold all – Ctrl+M, Ctrl+O
link|improve this answer
how did you make these beautiful buttons ..? using what? – Royi Namir Aug 17 '11 at 8:11
1  
using the kbd tag. – AvatarOfChronos Aug 17 '11 at 15:48
feedback

CTL + M + L expands all

CTL + M + O collapses all

Check here if you're looking for other shortcuts - these 2 are just a few of the many that are available.

link|improve this answer
Nice link, very thorough! – Bob Jun 11 '09 at 18:23
As I commented in the top answer, ctl+m+o collapses to definition which doesn't work for xml files. ctl+m+l should toggle it, but for me it sometimes does and sometimes doesn't. – Matthijs Wessels Jan 13 '10 at 13:10
feedback

Are you refering to the toggle outlining?

You can do Control-M then Control-L for toggle all outlining

link|improve this answer
feedback

all the shortcuts in visual studio http://www.dofactory.com/ShortCutKeys/ShortCutKeys.aspx

link|improve this answer
feedback

Yes there's a keystroke command, see this link for a how to:

http://weblogs.asp.net/mrdave/archive/2004/09/17/230732.aspx

link|improve this answer
feedback

If you mean shortcut then

CTRL + "M" + "M": This one will collapse the region your cursor is at whether its a method, namespace or whatever for collapsing code blocks, regions and methods. The first will collapse only the block/method or region your cursor is at while the second will collapse the entire region you are at.

http://www.dev102.com/2008/05/06/11-more-visual-studio-shortcuts-you-should-know/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.