Make colon almost never break a line

This commit is contained in:
WebFreak001 2019-01-11 00:45:47 +01:00
parent 3b094b16d9
commit 6e4136a353
1 changed files with 2 additions and 1 deletions

View File

@ -134,7 +134,6 @@ int breakCost(IdType p, IdType c) pure nothrow @safe @nogc
case tok!"||":
case tok!"&&":
case tok!",":
case tok!":":
case tok!"?":
return 0;
case tok!"(":
@ -184,6 +183,8 @@ int breakCost(IdType p, IdType c) pure nothrow @safe @nogc
case tok!"~":
case tok!"+=":
return 200;
case tok!":":
return p == tok!"identifier" ? 0 : 300;
case tok!".":
return p == tok!")" ? 0 : 300;
default: