Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-dev] Cannot fold blocks

It'd also be really nice to be able to fold scopes, for example:

int main(int,char**) {
    /*blah*/
    { //be able to fold this block.
        foo();
        bar();
    }
    /*blah*/
}

I'm not saying do it by default, but it'd be a lovely thing to have.

Alec


Back to the top