Anyone know how to turn off code folding in visual studio 2008? Some of my colleagues love it, but I personally always want to see all the code, and never want code folded out of sight. I'd like a setting that means my copy of Visual Studio never folds #regionsor function bodies.

link|improve this question

71% accept rate
4  
Totally misread that as region-fondling. My bad. – Jeff Yates Apr 30 '09 at 18:40
3  
Fondling your regions is already banned in my office ;) – Steve Cooper May 12 '09 at 10:05
feedback

9 Answers

up vote 62 down vote accepted

Go to the Tools->Options menu. Go to Text Editor->C#->Advanced. Uncheck "Enter outlining mode when files open".

That will disable all outlining, including regions, for all c# code files.

alt text

link|improve this answer
6  
Unchecking this option disables outlining completely however. Is there another setting somewhere that will just display all regions in the code expanded when a file is opened? – 0xA3 Oct 13 '09 at 8:50
I think you have to use Macros to do that, but I don't know the code to accomplish it. – Greg Oct 13 '09 at 16:03
feedback

The accepted answer turns off ALL code folding. If you want to disable #region folding but collapse comments, loops, methods, etc I wrote a plugin that does this for you.

Make #regions suck less (for free):

http://visualstudiogallery.msdn.microsoft.com/0ca60d35-1e02-43b7-bf59-ac7deb9afbca

  • Auto Expand regions when a file is opened
  • Optionally prevent regions from being collapsed (but still be able to collapse other code)
  • Give the #region / #end region lines a smaller, lighter background so they are less noticeable (also an option)
  • Works in C# and VB (but only in VS 2010)

Region Tool Screenshot

link|improve this answer
4  
Thanks for this, this seems to be a better and more gentle approach, rather than just disabling all outlining. – horsedrowner Jun 30 '11 at 10:33
1  
Great! I'm glad you like it. – NotDan Jun 30 '11 at 20:27
2  
This doesn't work with VS 2008 though – Mark Sowul Aug 2 '11 at 18:14
feedback

You can also disable region-wrapping on generated code (like when you use the Visual Studio shortcut to auto-implement an interface).

alt text

link|improve this answer
feedback

Options / Text Editor / C# / Advanced / Enter outlining mode when files open

link|improve this answer
feedback

It's not permanent, but the keystrokes Ctrl-M Ctrl-L expand the regions in a file

link|improve this answer
feedback

Also, a quick way to toggle expand/collapse of all regions is: CTRL + M + L

link|improve this answer
feedback

I've posted an answer in a related-but-not-duplicate thread that may help some people here. I detailed how to create macros that will deactivate a single unit's #regions by commenting out the #region and #endregion directives, with a companion for reactivating them. With the #regions deactivated the Ctrl+M+O / Collapse to Definitions function does exactly what I want it to. I hope this is useful for someone beside myself.

http://stackoverflow.com/questions/225413/shortcut-to-collapse-to-definitions-except-regions/1805597#1805597

link|improve this answer
feedback

This option seem to be available only in C# and not in C/C++ (Visual Studio 2005). To disable outlining in C/C++ files you need to make a trick by changing the outlining color to editor's background color. To do this go to Tools > Options > Environment > Fonts and Colors > Collapsible Text > Change "Item Foreground" color to White (or whatever your background color is).

link|improve this answer
This! This is what I've been looking for! Really appreciate this insight into an annoying "feature" that I've been looking to kill off for months (if not years)! – jerhewet Mar 12 at 15:24
@jerhewet by using this solution you might go into trouble if you click that white area by mistake and region folds, then to unfold it you need to aim click at an invisible area. – Czarek Tomczak Mar 12 at 16:00
feedback

It would be really nice if it was possible to have it totally ignore (hide) regions... Ideas?

link|improve this answer
1  
that's what the accepted answer does. – Steve Cooper Jun 6 '09 at 21:15
feedback

Your Answer

 
or
required, but never shown

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