dlang-community / dfmt

Dfmt is a formatter for D source code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

keep_line_breaks extra line after a global function call

belka-ew opened this issue · comments

void update()
{
    .notify;
}

gets formatted as

void update()
{
____
        .notify;
}

with:

./bin/dfmt test.d --keep_line_breaks=true

Undescores are spaces.

Probably in one way or another related to #559.