From c5c9930a5584e593584ece1fb52e7f0a4d56d79f Mon Sep 17 00:00:00 2001 From: Jeremy Baxter Date: Wed, 6 Dec 2023 13:51:08 +1300 Subject: [PATCH] Fix weird indentation bug ...by setting the default indentation character to a space. --- esvapi.d | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/esvapi.d b/esvapi.d index e436884..4c49ee1 100644 --- a/esvapi.d +++ b/esvapi.d @@ -269,7 +269,6 @@ class ESVApi format!"&%s=%s"(item.key, item.value); } - /* integers booleans indent_using */ parambuf = new string[opts.i.length + opts.b.length + 1]; foreach (item; opts.i.byKeyValue()) @@ -418,7 +417,7 @@ struct ESVApiOptions i["indent-declares"] = 40; i["indent-psalm-doxology"] = 30; i["line-length"] = 0; - indent_using = ESVIndent.TAB; + indent_using = ESVIndent.SPACE; } }