change newline insertion

This commit is contained in:
Daylin Morgan 2024-11-10 12:37:50 -06:00
parent 69ae06fa47
commit cddbf5ee1e
Signed by: daylin
GPG key ID: 950D13E9719334AD

View file

@ -64,7 +64,6 @@ func render*(cli: HwylCliHelp, f: HwylFlagHelp): string =
result.add "[/]" result.add "[/]"
else: else:
result.add " ".repeat(1 + cli.shortArgLen) result.add " ".repeat(1 + cli.shortArgLen)
result.add " " result.add " "
if f.long != "": if f.long != "":
result.add "[" & cli.styles.flagLong & "]" result.add "[" & cli.styles.flagLong & "]"
@ -101,9 +100,9 @@ func render*(cli: HwylCliHelp): string =
if cli.desc != "": if cli.desc != "":
result.add "\n" result.add "\n"
result.add cli.desc result.add cli.desc
result.add "\n"
result.add "\n" result.add "\n"
if cli.subcmds.len > 0: if cli.subcmds.len > 0:
result.add "\n"
result.add "[" & cli.styles.header & "]" result.add "[" & cli.styles.header & "]"
result.add "subcommands[/]:\n" result.add "subcommands[/]:\n"
for s in cli.subcmds: for s in cli.subcmds: