feat: add `dfmt_space_before_named_arg_colon`

Signed-off-by: Prajwal S N <prajwalnadig21@gmail.com>
This commit is contained in:
Prajwal S N 2023-12-13 18:59:19 +05:30
parent 14024a5725
commit 0259887791
No known key found for this signature in database
GPG Key ID: 60701A603988FAC2
1 changed files with 2 additions and 0 deletions

View File

@ -1077,6 +1077,8 @@ extern (C++) class FormatVisitor : SemanticTimeTransitiveVisitor
if (names && i < names.length && (*names)[i])
{
write((*names)[i].toString());
if (config.dfmt_space_before_named_arg_colon)
write(' ');
write(": ");
}
if (!el)