fix positional handling

This commit is contained in:
Daylin Morgan 2024-11-18 14:52:43 -06:00
parent 748f7e1bd6
commit c5f70cec4e
Signed by: daylin
GPG key ID: 950D13E9719334AD
2 changed files with 13 additions and 10 deletions

View file

@ -856,8 +856,8 @@ func setFlagVars(cfg: CliCfg): NimNode =
else: cfg.flags.filterIt(it.group != "global")
result.add flags.mapIt(
nnkIdentDefs.newTree(it.ident, it.typeNode, newEmptyNode())
)
nnkIdentDefs.newTree(it.ident, it.typeNode, newEmptyNode())
)
func literalFlags(f: CliFlag): NimNode =
var flags: seq[string]
@ -932,13 +932,13 @@ func parseArgs[T](p: OptParser, target: var seq[T]) =
func argOfBranch(cfg: CliCfg): NimNode =
result = nnkOfBranch.newTree(ident"cmdArgument")
if cfg.args.len == 0 and cfg.subcommands.len == 0:
result.add quote do:
hwylCliError("unexpected positional argument: [b]" & p.key)
else:
result.add quote do:
inc nArgs
parseArgs(p, result)
# if cfg.args.len == 0 and cfg.subcommands.len == 0:
# result.add quote do:
# hwylCliError("unexpected positional argument: [b]" & p.key)
# else:
result.add quote do:
inc nArgs
parseArgs(p, result)
func hwylCliImpl(cfg: CliCfg): NimNode =

View file

@ -78,7 +78,10 @@ hwylCli:
T seq[float]
? "multiple floats"
h "this will override the builtin 'h' for help"
def:
? "a flag with a string default"
* "the value"
run:
echo "hello from `example b` command"
echo fmt"{thing=}, {b=}"
echo fmt"{thing=}, {b=}, {h=}, {def=}"