Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use the code folding commands in Visual Studio 2008 all the time - e.g.

ctrl + m, ctrl + o  (collapse all)
ctrl + m, ctrl + m  (toggle expand/collapse of code block)

Visual Studio 2010 has the "improvement" that folded code now has a white space line between one block and the next. e.g.

void function1()[+]{...}

void function2()[+]{...}

Instead of the VS2008 way

void function1()[+]{...}
void function2()[+]{...}

Anyone know how to prevent VS2010 from adding this whiteline space - it's extremely irritating!

Update: it seems that lots of folks can't reproduce. but since this question has got 6 up votes to date, I'm assuming that there are those who can.

C# users report that they can't reproduce. I code in c++ exclusively and it's definitely a problem in c++. Maybe I'll post a report to m$...

share|improve this question
Send feedback to connect.microsoft.com – Hans Passant Nov 17 '10 at 16:00
I don't want to have to sign up to a hotmail account just to have to submit a bug(feature?!). I was hoping someone might know a workaround for the problem. – user206705 Nov 17 '10 at 17:22
I've just started using StyleCop - this is one of the standard rules so I'm not surprised to see Visual Studio enforce it by default. I am surprised that you can't turn it off, though. I've had a look but haven't found a way to help. – SGarratt Feb 14 '11 at 5:22
@freefallr: I cannot reproduce your problem. I just get the whiteline exactly if there was a whiteline between the functions before the fold. Or did you mean that the fold included one additional whiteline in VS2008? Also, you do not need to make a hotmail account to post on connect! – ltjax Feb 17 '11 at 11:16
don't put any whitelines between functions. That's my whole point. If I don't have whitelines between functions and I collapse the code, I get whitespace between functions! Use a class declaration (like a COM activex ctrl, or a regular class with lots of functions in the class declaration.) – user206705 Feb 17 '11 at 11:44
show 2 more comments

3 Answers

up vote 1 down vote accepted

I'm not sure if your specific issue is addressed by installing the Productivity Power Tools, but I just tested out the collapsed display in a C++ project in my install and it works as it used to in VS2008. The Productivity Power Tools add a lot of other nice little features and fix some irritations in VS2010 that make them worth having anyways.

Additional note: We're running VS2010 Ultimate, although I wouldn't expect the edition to matter.

share|improve this answer
Sorry I didn't get to award the points as time ran out before I revisited the question, but I'll award you the answer, as you're one of the few who correctly read the question and offered a sensible solution!!! – user206705 Feb 22 '11 at 11:47
Tbh if you'd have written your question more carefully, with a complete file that produces this behaviour, and screenshots too, oh and your exact environment details might have helped... then you could have got a "sensible solution" quicker. It's little comments like yours above that make helpful people not want to help anymore :/ – demoncodemonkey Mar 25 '11 at 6:35

I can't reproduce it. I'm using Visual C# 2010 Express.

namespace Bums
{
    class Bum1
    {
        void Lick1()
        {
            Lick2();
        }
        void Lick2()
        {
            Lick1();
        }
    }
    class Bum2
    {
        void Lick1()
        {
            Lick2();
        }
        void Lick2()
        {
            Lick1();
        }
    }
}

Pinky

(please no comments about how I should derive both classes from a base IBum interface)

share|improve this answer
Maybe the problem is specific to c++ code – user206705 Feb 19 '11 at 0:59
I'm using visual studio 2010 professional and coding exclusively in c++ – user206705 Feb 19 '11 at 1:00
Well I also have Visual C++ 2010 Express installed, and I get the exact same behaviour as I did in C#. I can't believe there's a difference between Professional and Express in this regard, so what could it be? Why don't you post a complete file that fails, so I can test it on mine? – demoncodemonkey Feb 19 '11 at 14:23
1  
+1 for Bum.Lick() – BlueRaja - Danny Pflughoeft Feb 19 '11 at 23:18

Just to clarify, when you using 'ctrl + m, ctrl + o' or 'ctrl + m, ctrl + m' in visual studio 2010, then vs automatically add white space line between methods.

Suppose you have following class:

 public class VsSettings
 {
        void function1()
        {
        }
        void function2()
        {
        }
 }

And after click 'ctrl + m, ctrl + o' you see following:

 public class VsSettings
    {
        void function1()...

        void function2()...
    }

If so then try to reset visual studio settings(tools -> import and export settings) and disable external plugins(like resharper, etc..), because for me result always was following(with resharper enabled, without resharper, before settings reset, after settings reset):

  public class VsSettings
        {
            void function1()...    
            void function2()...
        }

Hope this help.

share|improve this answer
Hi, thanks for your response. I'm a C++ developer, and I don't use .NET or any plugins like resharper. I've viewed files in other editors; there are no physical spaces inserted into the file, but, collapsing the code displays functions in double line spacing. – user206705 Feb 15 '11 at 12:20
This happens after a clean install of VS2010, there are no imported settings. – user206705 Feb 15 '11 at 12:21
Awesome but i've create c++ console project and cheched there, but collapsing work as expected. – Andrew Orsich Feb 15 '11 at 12:56
I also can't reproduce the issue... do you have the SP installed? I do not. – GalacticJello Feb 15 '11 at 19:20
Try reproducing it with a class. Others have determined that the question is valid. – user206705 Feb 16 '11 at 7:51
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.