Fix an incredibly annoying bug where line break info was being ignored when wrapping at commas
This commit is contained in:
parent
74d7644106
commit
3c6ea77a12
|
@ -1158,7 +1158,7 @@ private:
|
|||
}
|
||||
else if (!peekIs(tok!"}") && (linebreakHints.canFind(index)
|
||||
|| (linebreakHints.length == 0
|
||||
&& currentLineLength > config.dfmt_soft_max_line_length)))
|
||||
&& currentLineLength > config.max_line_length)))
|
||||
{
|
||||
pushWrapIndent();
|
||||
writeToken();
|
||||
|
|
|
@ -3,8 +3,7 @@ import std.stdio, std.random, std.typecons, std.conv, std.string, std.range;
|
|||
void main()
|
||||
{
|
||||
immutable interval = tuple(1, 100);
|
||||
writefln("Guess my target number that is between " ~ "%d and %d (inclusive).\n",
|
||||
interval[]);
|
||||
writefln("Guess my target number that is between " ~ "%d and %d (inclusive).\n", interval[]);
|
||||
immutable target = uniform!"[]"(interval[]);
|
||||
|
||||
foreach (immutable i; sequence!q{n})
|
||||
|
|
|
@ -16,8 +16,7 @@ unittest
|
|||
}
|
||||
|
||||
void doStuff(const Token[] tokens, ref const State current,
|
||||
const FormatterConfig* formatterConfig, int currentLineLength, int indentLevel,
|
||||
int depth)
|
||||
const FormatterConfig* formatterConfig, int currentLineLength, int indentLevel, int depth)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -2,8 +2,7 @@ import std.stdio, std.random, std.typecons, std.conv, std.string, std.range;
|
|||
|
||||
void main() {
|
||||
immutable interval = tuple(1, 100);
|
||||
writefln("Guess my target number that is between " ~ "%d and %d (inclusive).\n",
|
||||
interval[]);
|
||||
writefln("Guess my target number that is between " ~ "%d and %d (inclusive).\n", interval[]);
|
||||
immutable target = uniform!"[]"(interval[]);
|
||||
|
||||
foreach (immutable i; sequence!q{n}) {
|
||||
|
|
|
@ -15,8 +15,7 @@ unittest {
|
|||
}
|
||||
|
||||
void doStuff(const Token[] tokens, ref const State current,
|
||||
const FormatterConfig* formatterConfig, int currentLineLength, int indentLevel,
|
||||
int depth) {
|
||||
const FormatterConfig* formatterConfig, int currentLineLength, int indentLevel, int depth) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue