fix(help): Consistently use [] for positionals

In the usaeg we use `[]` but in the arg list we use `<>`.
This commit is contained in:
Ed Page 2022-08-29 15:09:06 -05:00
parent 29238551ab
commit 02db3043e2
34 changed files with 122 additions and 82 deletions

View file

@ -19,7 +19,7 @@ _my-app() {
case "${cmd}" in case "${cmd}" in
my__app) my__app)
opts="-F -f -O -o -h -V --flg --flag --opt --option --help --version <positional>" opts="-F -f -O -o -h -V --flg --flag --opt --option --help --version [positional]"
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") ) COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0 return 0

View file

@ -25,7 +25,7 @@ _my-app() {
case "${cmd}" in case "${cmd}" in
my__app) my__app)
opts="-C -c -h -V --conf --config --help --version <file> first second test help" opts="-C -c -h -V --conf --config --help --version [file] first second test help"
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") ) COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0 return 0

View file

@ -34,7 +34,7 @@ _my-app() {
case "${cmd}" in case "${cmd}" in
my__app) my__app)
opts="-C -c -h -V --conf --config --help --version <file> first second test some_cmd some-cmd-with-hyphens some-hidden-cmd help" opts="-C -c -h -V --conf --config --help --version [file] first second test some_cmd some-cmd-with-hyphens some-hidden-cmd help"
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") ) COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0 return 0
@ -160,7 +160,7 @@ _my-app() {
return 0 return 0
;; ;;
my__app__some_cmd) my__app__some_cmd)
opts="-h -V --config --help --version <path>..." opts="-h -V --config --help --version [path]..."
if [[ ${cur} == -* || ${COMP_CWORD} -eq 2 ]] ; then if [[ ${cur} == -* || ${COMP_CWORD} -eq 2 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") ) COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0 return 0

View file

@ -31,7 +31,7 @@ _my-app() {
case "${cmd}" in case "${cmd}" in
my__app) my__app)
opts="-C -c -h -V --conf --config --help --version <file> first second test some_cmd help" opts="-C -c -h -V --conf --config --help --version [file] first second test some_cmd help"
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") ) COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0 return 0

View file

@ -19,7 +19,7 @@ _my-app() {
case "${cmd}" in case "${cmd}" in
my__app) my__app)
opts="-p -f -d -e -c -u -H -h --choice --unknown --other --path --file --dir --exe --cmd-name --cmd --user --host --url --email --help <command_with_args>..." opts="-p -f -d -e -c -u -H -h --choice --unknown --other --path --file --dir --exe --cmd-name --cmd --user --host --url --email --help [command_with_args]..."
if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then if [[ ${cur} == -* || ${COMP_CWORD} -eq 1 ]] ; then
COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") ) COMPREPLY=( $(compgen -W "${opts}" -- "${cur}") )
return 0 return 0

View file

@ -12,7 +12,7 @@ Usage:
escaped-positional-derive[EXE] [OPTIONS] [-- <SLOP>...] escaped-positional-derive[EXE] [OPTIONS] [-- <SLOP>...]
Arguments: Arguments:
<SLOP>... [SLOP]...
Options: Options:
-f -f

View file

@ -12,7 +12,7 @@ Usage:
escaped-positional[EXE] [OPTIONS] [-- <SLOP>...] escaped-positional[EXE] [OPTIONS] [-- <SLOP>...]
Arguments: Arguments:
<SLOP>... [SLOP]...
Options: Options:
-f -f

View file

@ -111,7 +111,7 @@ Usage:
git-derive[EXE] stash pop [STASH] git-derive[EXE] stash pop [STASH]
Arguments: Arguments:
<STASH> [STASH]
Options: Options:
-h, --help Print help information -h, --help Print help information

View file

@ -109,7 +109,7 @@ Usage:
git[EXE] stash pop [STASH] git[EXE] stash pop [STASH]
Arguments: Arguments:
<STASH> [STASH]
Options: Options:
-h, --help Print help information -h, --help Print help information

View file

@ -59,7 +59,7 @@ Usage:
pacman[EXE] {sync|--sync|-S} [OPTIONS] [--] [package]... pacman[EXE] {sync|--sync|-S} [OPTIONS] [--] [package]...
Arguments: Arguments:
<package>... packages [package]... packages
Options: Options:
-s, --search <search>... search remote repositories for matching strings -s, --search <search>... search remote repositories for matching strings

View file

@ -11,7 +11,7 @@ Subcommands:
help Print this message or the help of the given subcommand(s) help Print this message or the help of the given subcommand(s)
Arguments: Arguments:
<name> Optional name to operate on [name] Optional name to operate on
Options: Options:
-c, --config <FILE> Sets a custom config file -c, --config <FILE> Sets a custom config file

View file

@ -7,7 +7,7 @@ Usage:
03_03_positional[EXE] [name] 03_03_positional[EXE] [name]
Arguments: Arguments:
<name> [name]
Options: Options:
-h, --help Print help information -h, --help Print help information

View file

@ -7,7 +7,7 @@ Usage:
03_03_positional_mult[EXE] [name]... 03_03_positional_mult[EXE] [name]...
Arguments: Arguments:
<name>... [name]...
Options: Options:
-h, --help Print help information -h, --help Print help information

View file

@ -22,7 +22,7 @@ Usage:
03_04_subcommands[EXE] add [NAME] 03_04_subcommands[EXE] add [NAME]
Arguments: Arguments:
<NAME> [NAME]
Options: Options:
-h, --help Print help information -h, --help Print help information

View file

@ -7,7 +7,7 @@ Usage:
03_05_default_values[EXE] [NAME] 03_05_default_values[EXE] [NAME]
Arguments: Arguments:
<NAME> [default: alice] [NAME] [default: alice]
Options: Options:
-h, --help Print help information -h, --help Print help information

View file

@ -7,7 +7,7 @@ Usage:
04_03_relations[EXE] [OPTIONS] <--set-ver <VER>|--major|--minor|--patch> [INPUT_FILE] 04_03_relations[EXE] [OPTIONS] <--set-ver <VER>|--major|--minor|--patch> [INPUT_FILE]
Arguments: Arguments:
<INPUT_FILE> some regular input [INPUT_FILE] some regular input
Options: Options:
--set-ver <VER> set version manually --set-ver <VER> set version manually

View file

@ -7,7 +7,7 @@ Usage:
04_04_custom[EXE] [OPTIONS] [INPUT_FILE] 04_04_custom[EXE] [OPTIONS] [INPUT_FILE]
Arguments: Arguments:
<INPUT_FILE> some regular input [INPUT_FILE] some regular input
Options: Options:
--set-ver <VER> set version manually --set-ver <VER> set version manually

View file

@ -11,7 +11,7 @@ Subcommands:
help Print this message or the help of the given subcommand(s) help Print this message or the help of the given subcommand(s)
Arguments: Arguments:
<NAME> Optional name to operate on [NAME] Optional name to operate on
Options: Options:
-c, --config <FILE> Sets a custom config file -c, --config <FILE> Sets a custom config file

View file

@ -7,7 +7,7 @@ Usage:
03_03_positional_derive[EXE] [NAME] 03_03_positional_derive[EXE] [NAME]
Arguments: Arguments:
<NAME> [NAME]
Options: Options:
-h, --help Print help information -h, --help Print help information

View file

@ -7,7 +7,7 @@ Usage:
03_03_positional_mult_derive[EXE] [NAME]... 03_03_positional_mult_derive[EXE] [NAME]...
Arguments: Arguments:
<NAME>... [NAME]...
Options: Options:
-h, --help Print help information -h, --help Print help information

View file

@ -22,7 +22,7 @@ Usage:
03_04_subcommands_derive[EXE] add [NAME] 03_04_subcommands_derive[EXE] add [NAME]
Arguments: Arguments:
<NAME> [NAME]
Options: Options:
-h, --help Print help information -h, --help Print help information

View file

@ -7,7 +7,7 @@ Usage:
03_05_default_values_derive[EXE] [NAME] 03_05_default_values_derive[EXE] [NAME]
Arguments: Arguments:
<NAME> [default: alice] [NAME] [default: alice]
Options: Options:
-h, --help Print help information -h, --help Print help information

View file

@ -7,7 +7,7 @@ Usage:
04_03_relations_derive[EXE] [OPTIONS] <--set-ver <VER>|--major|--minor|--patch> [INPUT_FILE] 04_03_relations_derive[EXE] [OPTIONS] <--set-ver <VER>|--major|--minor|--patch> [INPUT_FILE]
Arguments: Arguments:
<INPUT_FILE> some regular input [INPUT_FILE] some regular input
Options: Options:
--set-ver <VER> set version manually --set-ver <VER> set version manually

View file

@ -7,7 +7,7 @@ Usage:
04_04_custom_derive[EXE] [OPTIONS] [INPUT_FILE] 04_04_custom_derive[EXE] [OPTIONS] [INPUT_FILE]
Arguments: Arguments:
<INPUT_FILE> some regular input [INPUT_FILE] some regular input
Options: Options:
--set-ver <VER> set version manually --set-ver <VER> set version manually

View file

@ -3970,7 +3970,7 @@ impl Arg {
} }
} }
pub(crate) fn stylized(&self) -> StyledStr { pub(crate) fn stylized(&self, required: Option<bool>) -> StyledStr {
let mut styled = StyledStr::new(); let mut styled = StyledStr::new();
// Write the name such --long or -l // Write the name such --long or -l
if let Some(l) = self.get_long() { if let Some(l) = self.get_long() {
@ -3980,11 +3980,11 @@ impl Arg {
styled.literal("-"); styled.literal("-");
styled.literal(s); styled.literal(s);
} }
styled.extend(self.stylize_arg_suffix().into_iter()); styled.extend(self.stylize_arg_suffix(required).into_iter());
styled styled
} }
pub(crate) fn stylize_arg_suffix(&self) -> StyledStr { pub(crate) fn stylize_arg_suffix(&self, required: Option<bool>) -> StyledStr {
let mut styled = StyledStr::new(); let mut styled = StyledStr::new();
let mut need_closing_bracket = false; let mut need_closing_bracket = false;
@ -4005,7 +4005,8 @@ impl Arg {
} }
} }
if self.is_takes_value_set() || self.is_positional() { if self.is_takes_value_set() || self.is_positional() {
let arg_val = self.render_arg_val(); let required = required.unwrap_or_else(|| self.is_required_set());
let arg_val = self.render_arg_val(required);
styled.placeholder(arg_val); styled.placeholder(arg_val);
} else if matches!(*self.get_action(), ArgAction::Count) { } else if matches!(*self.get_action(), ArgAction::Count) {
styled.placeholder("..."); styled.placeholder("...");
@ -4018,7 +4019,7 @@ impl Arg {
} }
/// Write the values such as <name1> <name2> /// Write the values such as <name1> <name2>
fn render_arg_val(&self) -> String { fn render_arg_val(&self, required: bool) -> String {
let mut rendered = String::new(); let mut rendered = String::new();
let num_vals = self.get_num_args().expect(INTERNAL_ERROR_MSG); let num_vals = self.get_num_args().expect(INTERNAL_ERROR_MSG);
@ -4036,7 +4037,7 @@ impl Arg {
debug_assert!(self.is_takes_value_set()); debug_assert!(self.is_takes_value_set());
for (n, val_name) in val_names.iter().enumerate() { for (n, val_name) in val_names.iter().enumerate() {
let arg_name = if self.is_positional() && num_vals.min_values() == 0 { let arg_name = if self.is_positional() && (num_vals.min_values() == 0 || !required) {
format!("[{}]", val_name) format!("[{}]", val_name)
} else { } else {
format!("<{}>", val_name) format!("<{}>", val_name)
@ -4098,7 +4099,7 @@ impl Eq for Arg {}
impl Display for Arg { impl Display for Arg {
fn fmt(&self, f: &mut Formatter) -> fmt::Result { fn fmt(&self, f: &mut Formatter) -> fmt::Result {
self.stylized().fmt(f) self.stylized(None).fmt(f)
} }
} }
@ -4372,6 +4373,14 @@ mod test {
let mut p = Arg::new("pos").index(1).num_args(1..); let mut p = Arg::new("pos").index(1).num_args(1..);
p._build(); p._build();
assert_eq!(p.to_string(), "[pos]...");
}
#[test]
fn positional_display_multiple_values_required() {
let mut p = Arg::new("pos").index(1).num_args(1..).required(true);
p._build();
assert_eq!(p.to_string(), "<pos>..."); assert_eq!(p.to_string(), "<pos>...");
} }
@ -4388,6 +4397,14 @@ mod test {
let mut p = Arg::new("pos").index(1).num_args(1..); let mut p = Arg::new("pos").index(1).num_args(1..);
p._build(); p._build();
assert_eq!(p.to_string(), "[pos]...");
}
#[test]
fn positional_display_one_or_more_values_required() {
let mut p = Arg::new("pos").index(1).num_args(1..).required(true);
p._build();
assert_eq!(p.to_string(), "<pos>..."); assert_eq!(p.to_string(), "<pos>...");
} }
@ -4407,6 +4424,17 @@ mod test {
let mut p = Arg::new("pos").index(1).action(ArgAction::Append); let mut p = Arg::new("pos").index(1).action(ArgAction::Append);
p._build(); p._build();
assert_eq!(p.to_string(), "[pos]...");
}
#[test]
fn positional_display_multiple_occurrences_required() {
let mut p = Arg::new("pos")
.index(1)
.action(ArgAction::Append)
.required(true);
p._build();
assert_eq!(p.to_string(), "<pos>..."); assert_eq!(p.to_string(), "<pos>...");
} }
@ -4423,6 +4451,17 @@ mod test {
let mut p = Arg::new("pos").index(1).value_names(["file1", "file2"]); let mut p = Arg::new("pos").index(1).value_names(["file1", "file2"]);
p._build(); p._build();
assert_eq!(p.to_string(), "[file1] [file2]");
}
#[test]
fn positional_display_val_names_required() {
let mut p = Arg::new("pos")
.index(1)
.value_names(["file1", "file2"])
.required(true);
p._build();
assert_eq!(p.to_string(), "<file1> <file2>"); assert_eq!(p.to_string(), "<file1> <file2>");
} }

View file

@ -447,7 +447,7 @@ impl<'cmd, 'writer> Help<'cmd, 'writer> {
self.none(TAB); self.none(TAB);
self.short(arg); self.short(arg);
self.long(arg); self.long(arg);
self.writer.extend(arg.stylize_arg_suffix().into_iter()); self.writer.extend(arg.stylize_arg_suffix(None).into_iter());
self.align_to_about(arg, next_line_help, longest); self.align_to_about(arg, next_line_help, longest);
let about = if self.use_long { let about = if self.use_long {

View file

@ -418,10 +418,11 @@ impl<'cmd> Usage<'cmd> {
if !is_present { if !is_present {
if arg.is_positional() { if arg.is_positional() {
if incl_last || !arg.is_last_set() { if incl_last || !arg.is_last_set() {
required_positionals.insert((arg.index.unwrap(), arg.stylized())); required_positionals
.insert((arg.index.unwrap(), arg.stylized(Some(true))));
} }
} else { } else {
required_opts.insert(arg.stylized()); required_opts.insert(arg.stylized(Some(true)));
} }
} }
} else { } else {
@ -445,7 +446,7 @@ impl<'cmd> Usage<'cmd> {
group_members group_members
.iter() .iter()
.flat_map(|id| self.cmd.find(id)) .flat_map(|id| self.cmd.find(id))
.map(|arg| arg.stylized()), .map(|arg| arg.stylized(Some(true))),
); );
} }
} }

View file

@ -20,9 +20,9 @@ Usage:
clap-test [arg1] [arg2] [arg3] clap-test [arg1] [arg2] [arg3]
Arguments: Arguments:
<arg1> some [arg1] some
<arg2> some [arg2] some
<arg3> some [arg3] some
Options: Options:
-h, --help Print help information -h, --help Print help information
@ -292,7 +292,7 @@ Usage:
test [OPTIONS] [arg1] test [OPTIONS] [arg1]
Arguments: Arguments:
<arg1> some pos arg [arg1] some pos arg
Options: Options:
-o, --opt <opt> some option -o, --opt <opt> some option

View file

@ -260,7 +260,7 @@ fn delimited_missing_value() {
#[cfg(debug_assertions)] #[cfg(debug_assertions)]
#[test] #[test]
#[should_panic = "Argument `arg`'s default_missing_value=\"value\" failed validation: error: \"value\" isn't a valid value for '<arg>'"] #[should_panic = "Argument `arg`'s default_missing_value=\"value\" failed validation: error: \"value\" isn't a valid value for '[arg]'"]
fn default_missing_values_are_possible_values() { fn default_missing_values_are_possible_values() {
use clap::{Arg, Command}; use clap::{Arg, Command};
@ -275,7 +275,7 @@ fn default_missing_values_are_possible_values() {
#[cfg(debug_assertions)] #[cfg(debug_assertions)]
#[test] #[test]
#[should_panic = "Argument `arg`'s default_missing_value=\"value\" failed validation: error: Invalid value \"value\" for '<arg>"] #[should_panic = "Argument `arg`'s default_missing_value=\"value\" failed validation: error: Invalid value \"value\" for '[arg]"]
fn default_missing_values_are_valid() { fn default_missing_values_are_valid() {
use clap::{Arg, Command}; use clap::{Arg, Command};

View file

@ -794,7 +794,7 @@ fn required_args_with_default_values() {
#[cfg(debug_assertions)] #[cfg(debug_assertions)]
#[test] #[test]
#[should_panic = "Argument `arg`'s default_value=\"value\" failed validation: error: \"value\" isn't a valid value for '<arg>'"] #[should_panic = "Argument `arg`'s default_value=\"value\" failed validation: error: \"value\" isn't a valid value for '[arg]'"]
fn default_values_are_possible_values() { fn default_values_are_possible_values() {
use clap::{Arg, Command}; use clap::{Arg, Command};
@ -809,7 +809,7 @@ fn default_values_are_possible_values() {
#[cfg(debug_assertions)] #[cfg(debug_assertions)]
#[test] #[test]
#[should_panic = "Argument `arg`'s default_value=\"one\" failed validation: error: Invalid value \"one\" for '<arg>"] #[should_panic = "Argument `arg`'s default_value=\"one\" failed validation: error: Invalid value \"one\" for '[arg]"]
fn invalid_default_values() { fn invalid_default_values() {
use clap::{Arg, Command}; use clap::{Arg, Command};
@ -838,7 +838,7 @@ fn valid_delimited_default_values() {
#[cfg(debug_assertions)] #[cfg(debug_assertions)]
#[test] #[test]
#[should_panic = "Argument `arg`'s default_value=\"one\" failed validation: error: Invalid value \"one\" for '<arg>"] #[should_panic = "Argument `arg`'s default_value=\"one\" failed validation: error: Invalid value \"one\" for '[arg]"]
fn invalid_delimited_default_values() { fn invalid_delimited_default_values() {
use clap::{Arg, Command}; use clap::{Arg, Command};

View file

@ -12,7 +12,7 @@ For more information try --help
"; ";
static REQ_GROUP_CONFLICT_USAGE: &str = static REQ_GROUP_CONFLICT_USAGE: &str =
"error: The argument '--delete' cannot be used with '<base>' "error: The argument '--delete' cannot be used with '[base]'
Usage: Usage:
clap-test <base|--delete> clap-test <base|--delete>
@ -267,7 +267,7 @@ Usage:
prog <A> prog <A>
Arguments: Arguments:
<A> [A]
Options: Options:
-h, --help Print help information -h, --help Print help information

View file

@ -123,8 +123,8 @@ Usage:
flamegraph [OPTIONS] [BINFILE] [-- <ARGS>...] flamegraph [OPTIONS] [BINFILE] [-- <ARGS>...]
Arguments: Arguments:
<BINFILE> The path of the binary to be profiled. for a binary. [BINFILE] The path of the binary to be profiled. for a binary.
<ARGS>... Any arguments you wish to pass to the being profiled. [ARGS]... Any arguments you wish to pass to the being profiled.
Options: Options:
-v, --verbose Prints out more stuff. -v, --verbose Prints out more stuff.
@ -212,9 +212,9 @@ Subcommands:
help Print this message or the help of the given subcommand(s) help Print this message or the help of the given subcommand(s)
Arguments: Arguments:
<positional> tests positionals [positional] tests positionals
<positional2> tests positionals with exclusions [positional2] tests positionals with exclusions
<positional3>... tests specific values [possible values: vi, emacs] [positional3]... tests specific values [possible values: vi, emacs]
Options: Options:
-o, --option <opt>... tests options -o, --option <opt>... tests options
@ -549,7 +549,7 @@ Usage:
clap-test subcmd [OPTIONS] [--] [scpositional] clap-test subcmd [OPTIONS] [--] [scpositional]
Arguments: Arguments:
<scpositional> tests positionals [scpositional] tests positionals
Options: Options:
-o, --option <scoption>... tests options -o, --option <scoption>... tests options
@ -801,7 +801,7 @@ Usage:
ctest [mode] ctest [mode]
Arguments: Arguments:
<mode> x, max, maximum 20 characters, contains [mode] x, max, maximum 20 characters, contains
symbols. symbols.
l, long Copy-friendly, 14 l, long Copy-friendly, 14
characters, contains symbols. characters, contains symbols.
@ -965,8 +965,8 @@ Usage:
myapp [OPTIONS] [--] [ARGS] myapp [OPTIONS] [--] [ARGS]
Arguments: Arguments:
<arg1> some option [arg1] some option
<arg2>... some option [arg2]... some option
Options: Options:
-s, --some <some> some option -s, --some <some> some option
@ -1024,7 +1024,7 @@ Usage:
myapp [arg1] myapp [arg1]
Arguments: Arguments:
<arg1> [arg1]
some option some option
Options: Options:
@ -1108,7 +1108,7 @@ Subcommands:
help Print this message or the help of the given subcommand(s) help Print this message or the help of the given subcommand(s)
Arguments: Arguments:
<PATH> help [PATH] help
Options: Options:
-o, --opt <FILE> tests options -o, --opt <FILE> tests options
@ -1160,7 +1160,7 @@ Subcommands:
help Print this message or the help of the given subcommand(s) help Print this message or the help of the given subcommand(s)
Arguments: Arguments:
<PATH> help [PATH] help
Options: Options:
-f, --flag testing flags -f, --flag testing flags
@ -1187,7 +1187,7 @@ Usage:
prog [OPTIONS] [PATH] prog [OPTIONS] [PATH]
Arguments: Arguments:
<PATH> some [PATH] some
Options: Options:
-f, --flag testing flags -f, --flag testing flags
@ -1337,8 +1337,8 @@ Usage:
Arguments: Arguments:
<TARGET> some <TARGET> some
<CORPUS> some [CORPUS] some
<ARGS>... some [ARGS]... some
Options: Options:
-h, --help Print help information -h, --help Print help information
@ -1368,7 +1368,7 @@ Usage:
Arguments: Arguments:
<TARGET> some <TARGET> some
<CORPUS> some [CORPUS] some
<ARGS>... some <ARGS>... some
Options: Options:
@ -1405,7 +1405,7 @@ Subcommands:
Arguments: Arguments:
<TARGET> some <TARGET> some
<CORPUS> some [CORPUS] some
<ARGS>... some <ARGS>... some
Options: Options:
@ -1444,8 +1444,8 @@ Subcommands:
Arguments: Arguments:
<TARGET> some <TARGET> some
<CORPUS> some [CORPUS] some
<ARGS>... some [ARGS]... some
Options: Options:
-h, --help Print help information -h, --help Print help information
@ -1851,7 +1851,7 @@ Usage:
demo [OPTIONS] [FILES]... demo [OPTIONS] [FILES]...
Arguments: Arguments:
<FILES>... [FILES]...
Options: Options:
-f -f
@ -1885,8 +1885,8 @@ Usage:
ctest <arg1|arg2> ctest <arg1|arg2>
Arguments: Arguments:
<arg1> [arg1]
<arg2> [arg2]
Options: Options:
-h, --help Print help information -h, --help Print help information
@ -2274,8 +2274,8 @@ Usage:
deno <pos1|--option1> [pos2] deno <pos1|--option1> [pos2]
Arguments: Arguments:
<pos1> [pos1]
<pos2> [pos2]
Options: Options:
--option1 --option1
@ -2306,14 +2306,14 @@ Usage:
test [ARGS] test [ARGS]
Arguments: Arguments:
<gear> Which gear [gear] Which gear
Options: Options:
-h, --help Print help information -h, --help Print help information
-V, --version Print version information -V, --version Print version information
NETWORKING: NETWORKING:
<speed> How fast [speed] How fast
"; ";
#[test] #[test]
@ -2355,7 +2355,7 @@ Usage:
test [speed] test [speed]
NETWORKING: NETWORKING:
<speed> How fast [speed] How fast
"; ";
#[test] #[test]
@ -2413,7 +2413,7 @@ Usage:
test [arg1] <arg2> test [arg1] <arg2>
Arguments: Arguments:
<arg1> [arg1]
<arg2> <arg2>
Options: Options:
@ -2439,9 +2439,9 @@ Usage:
test [ARGS] test [ARGS]
Arguments: Arguments:
<foo> [foo]
<bar> [bar]
<baz>... [baz]...
Options: Options:
-h, --help Print help information -h, --help Print help information

View file

@ -197,7 +197,7 @@ Usage:
test [another] test [another]
Arguments: Arguments:
<another> another pos [another] another pos
Options: Options:
-h, --help Print help information -h, --help Print help information

View file

@ -580,7 +580,7 @@ Usage:
foo bar [value] foo bar [value]
Arguments: Arguments:
<value> [value]
Options: Options:
-h, --help Print help information -h, --help Print help information
@ -603,7 +603,7 @@ Usage:
foo bar [value] foo bar [value]
Arguments: Arguments:
<value> [value]
Options: Options:
-h, --help Print help information -h, --help Print help information
@ -626,7 +626,7 @@ Usage:
foo bar [value] foo bar [value]
Arguments: Arguments:
<value> [value]
Options: Options:
-h, --help Print help information -h, --help Print help information