dfmt icon indicating copy to clipboard operation
dfmt copied to clipboard

Multiline call chains not indented with `--keep_line_breaks=true`

Open FeepingCreature opened this issue 4 years ago • 0 comments

Consider the following code:

void main()
{
    return foo(
            bar(
            baz(
            whee)));
}

Expected would be something like:

void main()
{
    return foo(
            bar(
                baz(
                    whee)));
}

FeepingCreature avatar Apr 23 '20 06:04 FeepingCreature