diff --git a/src/dfmt/ast.d b/src/dfmt/ast.d index 31884d5..ce7fe06 100644 --- a/src/dfmt/ast.d +++ b/src/dfmt/ast.d @@ -2827,7 +2827,9 @@ extern (C++) class FormatVisitor : SemanticTimeTransitiveVisitor write(imp.id.toString()); if (imp.names.length) { - write(" : "); + if (config.dfmt_selective_import_space) + write(' '); + write(": "); foreach (const i, const name; imp.names) { if (i)