Compare commits

..

No commits in common. "e8e090c5b76bc555231bda536193df6f92a54db2" and "69ae06fa4765e840403c61f8d34c4b7484b9dc56" have entirely different histories.

3 changed files with 4 additions and 5 deletions

View file

@ -64,6 +64,7 @@ func render*(cli: HwylCliHelp, f: HwylFlagHelp): string =
result.add "[/]"
else:
result.add " ".repeat(1 + cli.shortArgLen)
result.add " "
if f.long != "":
result.add "[" & cli.styles.flagLong & "]"
@ -101,8 +102,8 @@ func render*(cli: HwylCliHelp): string =
result.add "\n"
result.add cli.desc
result.add "\n"
result.add "\n"
if cli.subcmds.len > 0:
result.add "\n"
result.add "[" & cli.styles.header & "]"
result.add "subcommands[/]:\n"
for s in cli.subcmds:
@ -408,7 +409,7 @@ func addBuiltinFlags(cfg: var CliCfg) =
func parseCliBody(body: NimNode, name = "", root = false): CliCfg =
result.name = name
result.root = root
result.root = true
for call in body:
if call.kind notin [nnkCall, nnkCommand, nnkPrefix]:
error "unexpected node kind: " & $call.kind
@ -776,7 +777,7 @@ func hwylCliImpl(cfg: CliCfg): NimNode =
`parserBody`
proc `runProcName`(`cmdLine`: openArray[string] = commandLineParams()) =
let `args` {.used.} = `parserProcName`(`cmdLine`)
let `args` = `parserProcName`(`cmdLine`)
`runBody`
if cfg.root:

View file

@ -45,7 +45,6 @@ hwylCli:
^[config]
run:
echo "hello from `example one` command!"
echo args
echo fmt"{color=}"
echo fmt"{verbose=}"
echo fmt"{config=}"

View file

@ -17,7 +17,6 @@
### cli generator
- [ ] add support for types(metavars)/defaults/required in help output
- [ ] add nargs to CliCfg
## features