Fix an incredibly annoying bug where line break info was being ignored when wrapping at commas

This commit is contained in:
Hackerpilot 2016-01-20 03:28:31 -08:00
parent 74d7644106
commit 3c6ea77a12
5 changed files with 5 additions and 9 deletions

View File

@ -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();

View File

@ -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})

View File

@ -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;
}

View File

@ -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}) {

View File

@ -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;
}