mirror of
https://github.com/daylinmorgan/hwylterm.git
synced 2024-11-16 06:28:32 -06:00
add todos
This commit is contained in:
parent
7bcc432e32
commit
b6202f4f51
1 changed files with 17 additions and 1 deletions
18
todo.md
18
todo.md
|
@ -14,9 +14,25 @@
|
||||||
- [ ] add a `commands` option for `newHwylCli` in `hwylterm/cli`
|
- [ ] add a `commands` option for `newHwylCli` in `hwylterm/cli`
|
||||||
- [ ] console object with customizable options to apply formatting
|
- [ ] console object with customizable options to apply formatting
|
||||||
|
|
||||||
### cli generatorj
|
### cli generato
|
||||||
|
|
||||||
- [ ] add support for types(metavars)/defaults/required in help output
|
- [ ] add support for types(metavars)/defaults/required in help output
|
||||||
|
- [ ] abstract the `globalFlags` argument to a `flagGroups` section with a builtin `global`
|
||||||
|
this would allow users to "inherit" flag groups in subcommands
|
||||||
|
```nim
|
||||||
|
flags:
|
||||||
|
# global flag group auto propagated down
|
||||||
|
--- global
|
||||||
|
config "path to config"
|
||||||
|
--- shared
|
||||||
|
shared:
|
||||||
|
`a-flag` "some shared flag"
|
||||||
|
-- sub
|
||||||
|
flags:
|
||||||
|
^shared
|
||||||
|
unique "some unique flag"
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## features
|
## features
|
||||||
|
|
Loading…
Reference in a new issue