clap-help
Purpose and Features
clap-help prints the --help message of clap based terminal applications.
Differences with the vanilla help renderer of the clap crate:
- more readable, thanks to a width aware layout
- much more compact: from 2 to 3 times less lines compared to vanilla
- options rendered in a balanced table, optimized for the width of the terminal
- introduction interpreted as Markdown, allowing lists, tables, code blocks, etc.
- doc of options interpreted as Markdown
- skin automatically selected for light or dark terminals
- customizable termimad skin
- you can customize section templates, remove them, reorder them, add sections
clap-help is especially suited to small terminals or big numbers of options.
Not (yet) supported:
- subcommands
- your use case, maybe, because clap-help hasn't been used in many programs and each one is different; come to the chat and ask if needed
Comparison
This comparison uses the broot program.
With clap-help

With the standard help rendering

(my screen isn't big enough to fit even half the help page)
Usage
Basic usage
Your program needs a clap Command defined.
Here's for example with clap-derive:
Notice
- the
disable_help_flag = truedisabling the standard behaviour of clap regarding help. - the explicit
helpargument. Here it's with only#[arg(long)]because-his used for something more important but you would most often 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.
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:
let args = parse;
if args.help
Help rendered in a light terminal:

Same help in a dark terminal:

Complete example is in /examples/area and can be seen with cargo run --example area -- --help
Adding custom sections
Help is usually easier to grasp with a few examples. You can write a few ones in your intro, or you can add them in a later section, after the options.
It's also possible to leverage the template system, which is what is done in the with-examples example, for this result:

Here's how it's done:
static EXAMPLES_TEMPLATE: &str = "
**Examples:**
${examples
**${example-number})** ${example-title}: `${example-cmd}`
${example-comments}
}
";
let mut printer = new
.with
.without;
printer.template_keys_mut.push;
printer.set_template;
for in EXAMPLES.iter.enumerate
printer.print_help;
Changing the skin
If your program has some kind of graphical identity, you may want to extend it to the help.
This is the case of bacon which features this kind of saturated pink that kids associate to pigs.
This change was easily done by setting the color of first level headers and bold:
let mut printer = new
.with
.without;
let skin = printer.skin_mut;
skin.headers.compound_style.set_fg;
skin.bold.set_fg;
printer.print_help;
Result:

Customizing more: changing both the skin and the templates
The example in examples/custom mainly features:
- less restreint on the colors
- a removal of the
valuecolumn

The strategy for those changes is
- to redefine the
bold,italic, andinline_codestyles to change their foreground color, to remove the background of the code, and to remove the Italic attribute ofitalic - to change the
"options"template so that${short}and${long}are in italic (i.e. between stars in Markdown) - to modify the template to remove the unwanted column
Here are the relevant parts of the code:
pub static TEMPLATE_OPTIONS: &str = "
**Options:**
|:-:|:-:|:-|
|short|long|what it does|
|:-:|:-|:-|
${option-lines
|*${short}*|*${long}*|${help}${possible_values}${default}|
}
|-
";
let mut printer = new
.without
.with
.with;
let skin = printer.skin_mut;
skin.headers.compound_style.set_fg;
skin.bold.set_fg;
skin.italic = with_fg;
skin.inline_code = with_fg;
printer.print_help;
Complete example is in /examples/custom and can be seen with cargo run --example custom -- --help
Please note that not every customization is possible or easy with the current clap-help. And some may be easy but not obvious. Come to the chat and ask if needed.