Expand description
Per-verb documentation metadata for the fslite help command.
Each VerbHelp entry carries the verb’s canonical name, a one-line
summary, and the list of --flag names the parser accepts for that
verb (mirroring parse at
crates/fslite-command/src/parser.rs:177, where every verb dispatches
with args.check_known_flags(verb, &[flags])). The renderer uses this
to avoid listing flags the verb does not accept.
This list is the single source of truth for the fslite help output
and for the reference/cli-verbs.md page in the docs site. When a
verb gains or loses a flag in the parser, update the matching entry
here in the same commit.
Structs§
- Verb
Help - Documentation metadata for one CLI verb.
Constants§
- VERB_
HELP - The full per-verb metadata table. Order is canonical: alphabetical by
name. The total count matches the number of variant arms inparse— 28 verbs.
Functions§
- print_
verb_ help - Print one verb’s help to stdout: summary line, blank line, then either
(none)for verbs without flags or one--flagper line under aFlags:header. - print_
verb_ table - Print the full verb table to stdout, sorted alphabetically by name.
Each line is two-space-indented
<name> <summary>with names left- padded to the widest name.