clap-help prints the --help message of clap based terminal applications.
clap-help is especially suited to small terminals or big numbers of options.
This comparison uses the broot program.
(my screen isn't big enough to fit even half the help page)
Your program needs a clap Command
defined.
Here's for example with clap-derive:
```rust
struct Args {
/// Print help
#[arg(long)]
help: bool,
/// Height, that is the distance between bottom and top
#[arg(short, long, default_value = "9")]
height: u16,
/// Width, from there, to there
#[arg(short, long, default_value = "3")]
width: u16,
/// Computation strategy
#[arg(short, long, default_value = "fast")]
strategy: Strategy,
/// Root Directory
pub root: Option<std::path::PathBuf>,
} ```
Notice
* the disable_help_flag = true
disabling the standard behaviour of clap regarding help.
* the explicit help
argument. Here it's with only #[arg(long)]
because -h
is used for something more important but you would most ofte have #[arg(short, long)]
.
The help introduction (the part before usage) is defined as a string which will be interpreted as Markdown. It can contain tables, lists, bold, italic, inline code, code blocks, etc.
```rust static INTRO: &str = " Compute height x width You can do it either precisely (enough) or fast (I mean not too slow).
"; ```
On program launch, you should check the value of the help
flag and, if necessary, print the help:
rust
let args = Args::parse();
if args.help {
Printer::new(Args::command())
.with_introduction(INTRO)
.print_help();
return;
}
Help rendered in a light terminal:
Same help in a dark terminal:
Complete example is in /examples/area
.