diff --git a/src/dfmt/formatter.d b/src/dfmt/formatter.d index 0751ab7..364a229 100644 --- a/src/dfmt/formatter.d +++ b/src/dfmt/formatter.d @@ -310,7 +310,13 @@ private: write(" "); } else if (!currentIs(tok!"{")) + { + if (currentIs(tok!")") && indents.topIs(tok!",")) + indents.pop(); + else if (peekBack2Is(tok!",") && !indents.topIs(tok!",")) + indents.push(tok!","); newline(); + } } else newline(); diff --git a/tests/allman/issue0162.d.ref b/tests/allman/issue0162.d.ref new file mode 100644 index 0000000..6d43b37 --- /dev/null +++ b/tests/allman/issue0162.d.ref @@ -0,0 +1,8 @@ +void foo(int foobarbazqux1, /* */ + int foobarbazqux2, /* */ + int foobarbazqux3, /* */ + int foobarbazqux4, /* */ + int foobarbazqux5, /* */ + int foobarbazqux6, /* */ + int foobarbazqux7 /* */ +); diff --git a/tests/issue0162.d b/tests/issue0162.d new file mode 100644 index 0000000..f606f8b --- /dev/null +++ b/tests/issue0162.d @@ -0,0 +1,8 @@ +void foo(int foobarbazqux1, /* */ + int foobarbazqux2, /* */ + int foobarbazqux3, /* */ + int foobarbazqux4, /* */ + int foobarbazqux5, /* */ + int foobarbazqux6, /* */ + int foobarbazqux7 /* */ +); diff --git a/tests/otbs/issue0162.d.ref b/tests/otbs/issue0162.d.ref new file mode 100644 index 0000000..6d43b37 --- /dev/null +++ b/tests/otbs/issue0162.d.ref @@ -0,0 +1,8 @@ +void foo(int foobarbazqux1, /* */ + int foobarbazqux2, /* */ + int foobarbazqux3, /* */ + int foobarbazqux4, /* */ + int foobarbazqux5, /* */ + int foobarbazqux6, /* */ + int foobarbazqux7 /* */ +);