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:
commit
49b9fe4051
|
@ -720,6 +720,12 @@ private:
|
||||||
|
|
||||||
void revertParenIndentation()
|
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)
|
if (parenDepthOnLine)
|
||||||
{
|
{
|
||||||
foreach (i; 0 .. parenDepthOnLine)
|
foreach (i; 0 .. parenDepthOnLine)
|
||||||
|
|
|
@ -4,3 +4,8 @@ unittest
|
||||||
x
|
x
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void f(T[] x,
|
||||||
|
const U y)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
|
@ -4,3 +4,8 @@ unittest
|
||||||
x
|
x
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void f(T[] x,
|
||||||
|
const U y)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
|
@ -3,3 +3,8 @@ unittest {
|
||||||
x
|
x
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void f(T[] x,
|
||||||
|
const U y)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
|
@ -3,3 +3,7 @@ unittest {
|
||||||
x
|
x
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void f(T[] x,
|
||||||
|
const U y) {
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue