Merge pull request #579 from belka-ew/bug/revert-array-indent-on-line

Keep "(" indentation with a "]" in the same line
This commit is contained in:
Razvan Nitu 2023-04-07 23:19:48 +08:00 committed by GitHub
commit 49b9fe4051
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 25 additions and 0 deletions

View File

@ -720,6 +720,12 @@ private:
void revertParenIndentation()
{
import std.algorithm.searching : canFind, until;
if (tokens[index .. $].until!(tok => tok.line != current.line).canFind!(x => x.type == tok!"]"))
{
return;
}
if (parenDepthOnLine)
{
foreach (i; 0 .. parenDepthOnLine)

View File

@ -4,3 +4,8 @@ unittest
x
]);
}
void f(T[] x,
const U y)
{
}

View File

@ -4,3 +4,8 @@ unittest
x
]);
}
void f(T[] x,
const U y)
{
}

View File

@ -3,3 +3,8 @@ unittest {
x
]);
}
void f(T[] x,
const U y)
{
}

View File

@ -3,3 +3,7 @@ unittest {
x
]);
}
void f(T[] x,
const U y) {
}