Fix weird indentation bug

...by setting the default indentation character to a space.
This commit is contained in:
Jeremy Baxter 2023-12-06 13:51:08 +13:00
parent 97c9c427ff
commit c5c9930a55

View file

@ -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;
}
}