Keep "(" indentation with a "]" in the same line
This commit is contained in:
parent
840aeee45e
commit
727472c365
|
@ -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)
|
||||
|
|
|
@ -4,3 +4,8 @@ unittest
|
|||
x
|
||||
]);
|
||||
}
|
||||
|
||||
void f(T[] x,
|
||||
const U y)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -4,3 +4,8 @@ unittest
|
|||
x
|
||||
]);
|
||||
}
|
||||
|
||||
void f(T[] x,
|
||||
const U y)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -3,3 +3,8 @@ unittest {
|
|||
x
|
||||
]);
|
||||
}
|
||||
|
||||
void f(T[] x,
|
||||
const U y)
|
||||
{
|
||||
}
|
||||
|
|
|
@ -3,3 +3,7 @@ unittest {
|
|||
x
|
||||
]);
|
||||
}
|
||||
|
||||
void f(T[] x,
|
||||
const U y) {
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue