Fix weird indentation bug
...by setting the default indentation character to a space.
This commit is contained in:
parent
97c9c427ff
commit
c5c9930a55
1 changed files with 1 additions and 2 deletions
3
esvapi.d
3
esvapi.d
|
@ -269,7 +269,6 @@ class ESVApi
|
||||||
format!"&%s=%s"(item.key, item.value);
|
format!"&%s=%s"(item.key, item.value);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* integers booleans indent_using */
|
|
||||||
parambuf = new string[opts.i.length + opts.b.length + 1];
|
parambuf = new string[opts.i.length + opts.b.length + 1];
|
||||||
|
|
||||||
foreach (item; opts.i.byKeyValue())
|
foreach (item; opts.i.byKeyValue())
|
||||||
|
@ -418,7 +417,7 @@ struct ESVApiOptions
|
||||||
i["indent-declares"] = 40;
|
i["indent-declares"] = 40;
|
||||||
i["indent-psalm-doxology"] = 30;
|
i["indent-psalm-doxology"] = 30;
|
||||||
i["line-length"] = 0;
|
i["line-length"] = 0;
|
||||||
indent_using = ESVIndent.TAB;
|
indent_using = ESVIndent.SPACE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue