vote up 16 vote down star
6

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.

flag

2  
Totally misread that as region-fondling. My bad. – Jeff Yates Apr 30 at 18:40
1  
Fondling your regions is already banned in my office ;) – Steve Cooper May 12 at 10:05

7 Answers

vote up 27 vote down check

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|flag
1  
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? – divo Oct 13 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 at 16:03
vote up 4 vote down

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

link|flag
vote up 3 vote down

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|flag
vote up 2 vote down

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

link|flag
vote up 2 vote down

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

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

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

link|flag
that's what the accepted answer does. – Steve Cooper Jun 6 at 21:15

Your Answer

Get an OpenID
or

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