Automatically set the range style from a..b -> a .. b

Commands:

sed -E "s/([[:alnum:]])[.][.]([[:alnum:]])/\1 .. \2/g" -i **/*.d
sed -E "s/([[:alnum:]])[.][.] ([[:alnum:]])/\1 .. \2/g" -i **/*.d
sed -E "s/([[:alnum:]]) [.][.]([[:alnum:]])/\1 .. \2/g" -i **/*.d
This commit is contained in:
Sebastian Wilzbach 2017-02-22 05:32:31 +01:00
parent 4b49413b5a
commit 425ab667a3
69 changed files with 637 additions and 637 deletions

View file

@ -41,7 +41,7 @@ struct FullCaseEntry
@property auto value() const @trusted pure nothrow @nogc return
{
return seq[0..entry_len];
return seq[0 .. entry_len];
}
}