Fix array indentation as argument

This commit is contained in:
Eugen Wissner 2022-05-23 08:30:41 +02:00 committed by Jan Jurzitza
parent 6a24f0dc7c
commit 77e2ba4e3d
7 changed files with 26 additions and 0 deletions

View File

@ -642,6 +642,9 @@ private:
} }
else if (p == tok!"[" && config.dfmt_keep_line_breaks == OptionalBoolean.t) else if (p == tok!"[" && config.dfmt_keep_line_breaks == OptionalBoolean.t)
{ {
if (peekBack2Is(tok!"(")) {
indents.pop();
}
IndentStack.Details detail; IndentStack.Details detail;
detail.wrap = false; detail.wrap = false;

View File

@ -0,0 +1,6 @@
unittest
{
f([
x
]);
}

View File

@ -0,0 +1,6 @@
unittest
{
f([
x
]);
}

View File

@ -0,0 +1 @@
--keep_line_breaks=true

View File

@ -0,0 +1,5 @@
unittest {
f([
x
]);
}

View File

@ -0,0 +1,5 @@
unittest {
f([
x
]);
}