feat: add `dfmt_space_before_named_arg_colon`
Signed-off-by: Prajwal S N <prajwalnadig21@gmail.com>
This commit is contained in:
parent
14024a5725
commit
0259887791
|
@ -1077,6 +1077,8 @@ extern (C++) class FormatVisitor : SemanticTimeTransitiveVisitor
|
||||||
if (names && i < names.length && (*names)[i])
|
if (names && i < names.length && (*names)[i])
|
||||||
{
|
{
|
||||||
write((*names)[i].toString());
|
write((*names)[i].toString());
|
||||||
|
if (config.dfmt_space_before_named_arg_colon)
|
||||||
|
write(' ');
|
||||||
write(": ");
|
write(": ");
|
||||||
}
|
}
|
||||||
if (!el)
|
if (!el)
|
||||||
|
|
Loading…
Reference in New Issue