Keep "(" indentation with a "]" in the same line

This commit is contained in:
Eugen Wissner 2023-03-20 17:59:35 +01:00
parent 840aeee45e
commit 727472c365
No known key found for this signature in database
GPG Key ID: A27FDC1E8EE902C0
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) {
}