parent
94351246f6
commit
eab4cac12f
|
@ -1406,7 +1406,7 @@ private:
|
|||
{
|
||||
pushWrapIndent();
|
||||
newline();
|
||||
if (ufcsWrap)
|
||||
if (ufcsWrap || onNextLine)
|
||||
regenLineBreakHints(index);
|
||||
}
|
||||
writeToken();
|
||||
|
|
|
@ -0,0 +1,5 @@
|
|||
void main()
|
||||
{
|
||||
auto someAutoVariableName = this.firstLink.secondLink
|
||||
.filter!(shouldBeProbablySomeIdentifierOrNot);
|
||||
}
|
|
@ -0,0 +1 @@
|
|||
--keep_line_breaks=true
|
|
@ -0,0 +1,5 @@
|
|||
void main()
|
||||
{
|
||||
auto someAutoVariableName = this.firstLink.secondLink
|
||||
.filter!(shouldBeProbablySomeIdentifierOrNot);
|
||||
}
|
|
@ -0,0 +1,4 @@
|
|||
void main() {
|
||||
auto someAutoVariableName = this.firstLink.secondLink
|
||||
.filter!(shouldBeProbablySomeIdentifierOrNot);
|
||||
}
|
Loading…
Reference in New Issue