mirror of
https://github.com/daylinmorgan/hwylterm.git
synced 2024-11-16 06:28:32 -06:00
71 lines
1.4 KiB
Nim
71 lines
1.4 KiB
Nim
import std/[strformat, strutils]
|
|
import hwylterm, hwylterm/hwylcli
|
|
|
|
|
|
type
|
|
Color = enum
|
|
red, blue, green
|
|
|
|
|
|
hwylCli:
|
|
name "example"
|
|
V "0.1.0"
|
|
... "a description of hwylterm"
|
|
flags:
|
|
[global]
|
|
yes:
|
|
T bool
|
|
? "set flag to yes"
|
|
[config]
|
|
confiG:
|
|
T seq[string]
|
|
? "path to config file"
|
|
* @["config.yml"]
|
|
preSub:
|
|
echo "this is run after subcommand parsing but before its run block"
|
|
run:
|
|
echo "this is always run prior to subcommand parsing"
|
|
subcommands:
|
|
--- "onelonger"
|
|
... """
|
|
the first subcommand
|
|
|
|
this command features both an enum flag and a Count flag
|
|
it also inherits the `[[config]` flag group
|
|
"""
|
|
|
|
flags:
|
|
color:
|
|
T Color
|
|
? "a color (red, green, blue)"
|
|
verbose:
|
|
T Count
|
|
? "a count flag"
|
|
- v
|
|
^[config]
|
|
run:
|
|
echo "hello from `example one` command!"
|
|
echo args
|
|
echo fmt"{color=}"
|
|
echo fmt"{verbose=}"
|
|
echo fmt"{config=}"
|
|
|
|
--- "two-longer"
|
|
... """
|
|
some second subcommand
|
|
|
|
a longer mulitline description that will be visible in the subcommand help
|
|
and it will automatically be "bb"'ed [bold]this is bold text[/]
|
|
"""
|
|
flags:
|
|
a:
|
|
T bool
|
|
? "some help"
|
|
b:
|
|
T seq[float]
|
|
? "multiple floats"
|
|
h "this will override the builtin 'h' for help"
|
|
run:
|
|
echo "hello from `example b` command"
|
|
echo fmt"{a=}, {b=}"
|
|
|