Fix array indentation as argument
This commit is contained in:
parent
6a24f0dc7c
commit
77e2ba4e3d
|
@ -642,6 +642,9 @@ private:
|
|||
}
|
||||
else if (p == tok!"[" && config.dfmt_keep_line_breaks == OptionalBoolean.t)
|
||||
{
|
||||
if (peekBack2Is(tok!"(")) {
|
||||
indents.pop();
|
||||
}
|
||||
IndentStack.Details detail;
|
||||
|
||||
detail.wrap = false;
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
unittest
|
||||
{
|
||||
f([
|
||||
x
|
||||
]);
|
||||
}
|
|
@ -0,0 +1,6 @@
|
|||
unittest
|
||||
{
|
||||
f([
|
||||
x
|
||||
]);
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
--keep_line_breaks=true
|
|
@ -0,0 +1,5 @@
|
|||
unittest {
|
||||
f([
|
||||
x
|
||||
]);
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
unittest {
|
||||
f([
|
||||
x
|
||||
]);
|
||||
}
|
Loading…
Reference in New Issue