From b4e36d998b80d07a0ca3fe6bdd4c6f2573bda291 Mon Sep 17 00:00:00 2001 From: Prajwal S N Date: Thu, 23 Nov 2023 00:11:24 +0530 Subject: [PATCH] feat: add `dfmt_selective_import_space` Signed-off-by: Prajwal S N --- src/dfmt/ast.d | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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)