mirror of
https://github.com/clap-rs/clap
synced 2024-12-14 06:42:33 +00:00
fix(complete): Fix zsh.rs subcommand deduplication
Fixing the iteration over all_subcommands in zsh.rs. We deduplicate values on (sc_name, bin_name) keys, but then only iterate on bin_name. This doesn't cause problems now, since all bin names seem to be unique. However, without fixing this, the next commit would have started generating duplicated functions with same names. For example, with an #[long = "foo", visible_alias = "bar"] subcommand, we'll end up with 2 pairs: [("foo", "foo"), ("bar", "foo")]. Before this commit, we would have ended up generating _my-app__foo_commands() functions. These functions should have identical content, so it is not an error, just an inefficiency that we can fix.
This commit is contained in:
parent
5be548dd54
commit
be15bd5d96
6 changed files with 292 additions and 289 deletions
|
@ -110,12 +110,15 @@ _{bin_name_underscore}_commands() {{
|
||||||
ret.push(parent_text);
|
ret.push(parent_text);
|
||||||
|
|
||||||
// Next we start looping through all the children, grandchildren, etc.
|
// Next we start looping through all the children, grandchildren, etc.
|
||||||
let mut all_subcommands = utils::all_subcommands(p);
|
let mut all_subcommand_bins: Vec<_> = utils::all_subcommands(p)
|
||||||
|
.into_iter()
|
||||||
|
.map(|(_sc_name, bin_name)| bin_name)
|
||||||
|
.collect();
|
||||||
|
|
||||||
all_subcommands.sort();
|
all_subcommand_bins.sort();
|
||||||
all_subcommands.dedup();
|
all_subcommand_bins.dedup();
|
||||||
|
|
||||||
for (_, ref bin_name) in &all_subcommands {
|
for bin_name in &all_subcommand_bins {
|
||||||
debug!("subcommand_details:iter: bin_name={bin_name}");
|
debug!("subcommand_details:iter: bin_name={bin_name}");
|
||||||
|
|
||||||
ret.push(format!(
|
ret.push(format!(
|
||||||
|
|
|
@ -472,136 +472,16 @@ _exhaustive__action_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'exhaustive action commands' commands "$@"
|
_describe -t commands 'exhaustive action commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_exhaustive__help__action_commands] )) ||
|
|
||||||
_exhaustive__help__action_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive help action commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__alias_commands] )) ||
|
(( $+functions[_exhaustive__alias_commands] )) ||
|
||||||
_exhaustive__alias_commands() {
|
_exhaustive__alias_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'exhaustive alias commands' commands "$@"
|
_describe -t commands 'exhaustive alias commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_exhaustive__help__alias_commands] )) ||
|
|
||||||
_exhaustive__help__alias_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive help alias commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__help__quote__cmd-backslash_commands] )) ||
|
|
||||||
_exhaustive__help__quote__cmd-backslash_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive help quote cmd-backslash commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__quote__cmd-backslash_commands] )) ||
|
|
||||||
_exhaustive__quote__cmd-backslash_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive quote cmd-backslash commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__quote__help__cmd-backslash_commands] )) ||
|
|
||||||
_exhaustive__quote__help__cmd-backslash_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive quote help cmd-backslash commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__help__quote__cmd-backticks_commands] )) ||
|
|
||||||
_exhaustive__help__quote__cmd-backticks_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive help quote cmd-backticks commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__quote__cmd-backticks_commands] )) ||
|
|
||||||
_exhaustive__quote__cmd-backticks_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive quote cmd-backticks commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__quote__help__cmd-backticks_commands] )) ||
|
|
||||||
_exhaustive__quote__help__cmd-backticks_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive quote help cmd-backticks commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__help__quote__cmd-brackets_commands] )) ||
|
|
||||||
_exhaustive__help__quote__cmd-brackets_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive help quote cmd-brackets commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__quote__cmd-brackets_commands] )) ||
|
|
||||||
_exhaustive__quote__cmd-brackets_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive quote cmd-brackets commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__quote__help__cmd-brackets_commands] )) ||
|
|
||||||
_exhaustive__quote__help__cmd-brackets_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive quote help cmd-brackets commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__help__quote__cmd-double-quotes_commands] )) ||
|
|
||||||
_exhaustive__help__quote__cmd-double-quotes_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive help quote cmd-double-quotes commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__quote__cmd-double-quotes_commands] )) ||
|
|
||||||
_exhaustive__quote__cmd-double-quotes_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive quote cmd-double-quotes commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__quote__help__cmd-double-quotes_commands] )) ||
|
|
||||||
_exhaustive__quote__help__cmd-double-quotes_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive quote help cmd-double-quotes commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__help__quote__cmd-expansions_commands] )) ||
|
|
||||||
_exhaustive__help__quote__cmd-expansions_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive help quote cmd-expansions commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__quote__cmd-expansions_commands] )) ||
|
|
||||||
_exhaustive__quote__cmd-expansions_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive quote cmd-expansions commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__quote__help__cmd-expansions_commands] )) ||
|
|
||||||
_exhaustive__quote__help__cmd-expansions_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive quote help cmd-expansions commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__help__quote__cmd-single-quotes_commands] )) ||
|
|
||||||
_exhaustive__help__quote__cmd-single-quotes_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive help quote cmd-single-quotes commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__quote__cmd-single-quotes_commands] )) ||
|
|
||||||
_exhaustive__quote__cmd-single-quotes_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive quote cmd-single-quotes commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__quote__help__cmd-single-quotes_commands] )) ||
|
|
||||||
_exhaustive__quote__help__cmd-single-quotes_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive quote help cmd-single-quotes commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__complete_commands] )) ||
|
(( $+functions[_exhaustive__complete_commands] )) ||
|
||||||
_exhaustive__complete_commands() {
|
_exhaustive__complete_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'exhaustive complete commands' commands "$@"
|
_describe -t commands 'exhaustive complete commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_exhaustive__help__complete_commands] )) ||
|
|
||||||
_exhaustive__help__complete_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive help complete commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__help__quote__escape-help_commands] )) ||
|
|
||||||
_exhaustive__help__quote__escape-help_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive help quote escape-help commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__quote__escape-help_commands] )) ||
|
|
||||||
_exhaustive__quote__escape-help_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive quote escape-help commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__quote__help__escape-help_commands] )) ||
|
|
||||||
_exhaustive__quote__help__escape-help_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive quote help escape-help commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__help_commands] )) ||
|
(( $+functions[_exhaustive__help_commands] )) ||
|
||||||
_exhaustive__help_commands() {
|
_exhaustive__help_commands() {
|
||||||
local commands; commands=(
|
local commands; commands=(
|
||||||
|
@ -617,11 +497,126 @@ _exhaustive__help_commands() {
|
||||||
)
|
)
|
||||||
_describe -t commands 'exhaustive help commands' commands "$@"
|
_describe -t commands 'exhaustive help commands' commands "$@"
|
||||||
}
|
}
|
||||||
|
(( $+functions[_exhaustive__help__action_commands] )) ||
|
||||||
|
_exhaustive__help__action_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive help action commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__help__alias_commands] )) ||
|
||||||
|
_exhaustive__help__alias_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive help alias commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__help__complete_commands] )) ||
|
||||||
|
_exhaustive__help__complete_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive help complete commands' commands "$@"
|
||||||
|
}
|
||||||
(( $+functions[_exhaustive__help__help_commands] )) ||
|
(( $+functions[_exhaustive__help__help_commands] )) ||
|
||||||
_exhaustive__help__help_commands() {
|
_exhaustive__help__help_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'exhaustive help help commands' commands "$@"
|
_describe -t commands 'exhaustive help help commands' commands "$@"
|
||||||
}
|
}
|
||||||
|
(( $+functions[_exhaustive__help__hint_commands] )) ||
|
||||||
|
_exhaustive__help__hint_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive help hint commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__help__last_commands] )) ||
|
||||||
|
_exhaustive__help__last_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive help last commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__help__pacman_commands] )) ||
|
||||||
|
_exhaustive__help__pacman_commands() {
|
||||||
|
local commands; commands=(
|
||||||
|
'one:' \
|
||||||
|
'two:' \
|
||||||
|
)
|
||||||
|
_describe -t commands 'exhaustive help pacman commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__help__pacman__one_commands] )) ||
|
||||||
|
_exhaustive__help__pacman__one_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive help pacman one commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__help__pacman__two_commands] )) ||
|
||||||
|
_exhaustive__help__pacman__two_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive help pacman two commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__help__quote_commands] )) ||
|
||||||
|
_exhaustive__help__quote_commands() {
|
||||||
|
local commands; commands=(
|
||||||
|
'cmd-single-quotes:Can be '\''always'\'', '\''auto'\'', or '\''never'\''' \
|
||||||
|
'cmd-double-quotes:Can be "always", "auto", or "never"' \
|
||||||
|
'cmd-backticks:For more information see \`echo test\`' \
|
||||||
|
'cmd-backslash:Avoid '\''\\n'\''' \
|
||||||
|
'cmd-brackets:List packages \[filter\]' \
|
||||||
|
'cmd-expansions:Execute the shell command with \$SHELL' \
|
||||||
|
'escape-help:\\tab "'\'' New Line' \
|
||||||
|
)
|
||||||
|
_describe -t commands 'exhaustive help quote commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__help__quote__cmd-backslash_commands] )) ||
|
||||||
|
_exhaustive__help__quote__cmd-backslash_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive help quote cmd-backslash commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__help__quote__cmd-backticks_commands] )) ||
|
||||||
|
_exhaustive__help__quote__cmd-backticks_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive help quote cmd-backticks commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__help__quote__cmd-brackets_commands] )) ||
|
||||||
|
_exhaustive__help__quote__cmd-brackets_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive help quote cmd-brackets commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__help__quote__cmd-double-quotes_commands] )) ||
|
||||||
|
_exhaustive__help__quote__cmd-double-quotes_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive help quote cmd-double-quotes commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__help__quote__cmd-expansions_commands] )) ||
|
||||||
|
_exhaustive__help__quote__cmd-expansions_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive help quote cmd-expansions commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__help__quote__cmd-single-quotes_commands] )) ||
|
||||||
|
_exhaustive__help__quote__cmd-single-quotes_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive help quote cmd-single-quotes commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__help__quote__escape-help_commands] )) ||
|
||||||
|
_exhaustive__help__quote__escape-help_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive help quote escape-help commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__help__value_commands] )) ||
|
||||||
|
_exhaustive__help__value_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive help value commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__hint_commands] )) ||
|
||||||
|
_exhaustive__hint_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive hint commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__last_commands] )) ||
|
||||||
|
_exhaustive__last_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive last commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__pacman_commands] )) ||
|
||||||
|
_exhaustive__pacman_commands() {
|
||||||
|
local commands; commands=(
|
||||||
|
'one:' \
|
||||||
|
'two:' \
|
||||||
|
'help:Print this message or the help of the given subcommand(s)' \
|
||||||
|
)
|
||||||
|
_describe -t commands 'exhaustive pacman commands' commands "$@"
|
||||||
|
}
|
||||||
(( $+functions[_exhaustive__pacman__help_commands] )) ||
|
(( $+functions[_exhaustive__pacman__help_commands] )) ||
|
||||||
_exhaustive__pacman__help_commands() {
|
_exhaustive__pacman__help_commands() {
|
||||||
local commands; commands=(
|
local commands; commands=(
|
||||||
|
@ -636,89 +631,25 @@ _exhaustive__pacman__help__help_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'exhaustive pacman help help commands' commands "$@"
|
_describe -t commands 'exhaustive pacman help help commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_exhaustive__quote__help_commands] )) ||
|
|
||||||
_exhaustive__quote__help_commands() {
|
|
||||||
local commands; commands=(
|
|
||||||
'cmd-single-quotes:Can be '\''always'\'', '\''auto'\'', or '\''never'\''' \
|
|
||||||
'cmd-double-quotes:Can be "always", "auto", or "never"' \
|
|
||||||
'cmd-backticks:For more information see \`echo test\`' \
|
|
||||||
'cmd-backslash:Avoid '\''\\n'\''' \
|
|
||||||
'cmd-brackets:List packages \[filter\]' \
|
|
||||||
'cmd-expansions:Execute the shell command with \$SHELL' \
|
|
||||||
'escape-help:\\tab "'\'' New Line' \
|
|
||||||
'help:Print this message or the help of the given subcommand(s)' \
|
|
||||||
)
|
|
||||||
_describe -t commands 'exhaustive quote help commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__quote__help__help_commands] )) ||
|
|
||||||
_exhaustive__quote__help__help_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive quote help help commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__help__hint_commands] )) ||
|
|
||||||
_exhaustive__help__hint_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive help hint commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__hint_commands] )) ||
|
|
||||||
_exhaustive__hint_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive hint commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__help__last_commands] )) ||
|
|
||||||
_exhaustive__help__last_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive help last commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__last_commands] )) ||
|
|
||||||
_exhaustive__last_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive last commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__help__pacman__one_commands] )) ||
|
|
||||||
_exhaustive__help__pacman__one_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'exhaustive help pacman one commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__pacman__help__one_commands] )) ||
|
(( $+functions[_exhaustive__pacman__help__one_commands] )) ||
|
||||||
_exhaustive__pacman__help__one_commands() {
|
_exhaustive__pacman__help__one_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'exhaustive pacman help one commands' commands "$@"
|
_describe -t commands 'exhaustive pacman help one commands' commands "$@"
|
||||||
}
|
}
|
||||||
|
(( $+functions[_exhaustive__pacman__help__two_commands] )) ||
|
||||||
|
_exhaustive__pacman__help__two_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive pacman help two commands' commands "$@"
|
||||||
|
}
|
||||||
(( $+functions[_exhaustive__pacman__one_commands] )) ||
|
(( $+functions[_exhaustive__pacman__one_commands] )) ||
|
||||||
_exhaustive__pacman__one_commands() {
|
_exhaustive__pacman__one_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'exhaustive pacman one commands' commands "$@"
|
_describe -t commands 'exhaustive pacman one commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_exhaustive__help__pacman_commands] )) ||
|
(( $+functions[_exhaustive__pacman__two_commands] )) ||
|
||||||
_exhaustive__help__pacman_commands() {
|
_exhaustive__pacman__two_commands() {
|
||||||
local commands; commands=(
|
local commands; commands=()
|
||||||
'one:' \
|
_describe -t commands 'exhaustive pacman two commands' commands "$@"
|
||||||
'two:' \
|
|
||||||
)
|
|
||||||
_describe -t commands 'exhaustive help pacman commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__pacman_commands] )) ||
|
|
||||||
_exhaustive__pacman_commands() {
|
|
||||||
local commands; commands=(
|
|
||||||
'one:' \
|
|
||||||
'two:' \
|
|
||||||
'help:Print this message or the help of the given subcommand(s)' \
|
|
||||||
)
|
|
||||||
_describe -t commands 'exhaustive pacman commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_exhaustive__help__quote_commands] )) ||
|
|
||||||
_exhaustive__help__quote_commands() {
|
|
||||||
local commands; commands=(
|
|
||||||
'cmd-single-quotes:Can be '\''always'\'', '\''auto'\'', or '\''never'\''' \
|
|
||||||
'cmd-double-quotes:Can be "always", "auto", or "never"' \
|
|
||||||
'cmd-backticks:For more information see \`echo test\`' \
|
|
||||||
'cmd-backslash:Avoid '\''\\n'\''' \
|
|
||||||
'cmd-brackets:List packages \[filter\]' \
|
|
||||||
'cmd-expansions:Execute the shell command with \$SHELL' \
|
|
||||||
'escape-help:\\tab "'\'' New Line' \
|
|
||||||
)
|
|
||||||
_describe -t commands 'exhaustive help quote commands' commands "$@"
|
|
||||||
}
|
}
|
||||||
(( $+functions[_exhaustive__quote_commands] )) ||
|
(( $+functions[_exhaustive__quote_commands] )) ||
|
||||||
_exhaustive__quote_commands() {
|
_exhaustive__quote_commands() {
|
||||||
|
@ -734,25 +665,94 @@ _exhaustive__quote_commands() {
|
||||||
)
|
)
|
||||||
_describe -t commands 'exhaustive quote commands' commands "$@"
|
_describe -t commands 'exhaustive quote commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_exhaustive__help__pacman__two_commands] )) ||
|
(( $+functions[_exhaustive__quote__cmd-backslash_commands] )) ||
|
||||||
_exhaustive__help__pacman__two_commands() {
|
_exhaustive__quote__cmd-backslash_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'exhaustive help pacman two commands' commands "$@"
|
_describe -t commands 'exhaustive quote cmd-backslash commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_exhaustive__pacman__help__two_commands] )) ||
|
(( $+functions[_exhaustive__quote__cmd-backticks_commands] )) ||
|
||||||
_exhaustive__pacman__help__two_commands() {
|
_exhaustive__quote__cmd-backticks_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'exhaustive pacman help two commands' commands "$@"
|
_describe -t commands 'exhaustive quote cmd-backticks commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_exhaustive__pacman__two_commands] )) ||
|
(( $+functions[_exhaustive__quote__cmd-brackets_commands] )) ||
|
||||||
_exhaustive__pacman__two_commands() {
|
_exhaustive__quote__cmd-brackets_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'exhaustive pacman two commands' commands "$@"
|
_describe -t commands 'exhaustive quote cmd-brackets commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_exhaustive__help__value_commands] )) ||
|
(( $+functions[_exhaustive__quote__cmd-double-quotes_commands] )) ||
|
||||||
_exhaustive__help__value_commands() {
|
_exhaustive__quote__cmd-double-quotes_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'exhaustive help value commands' commands "$@"
|
_describe -t commands 'exhaustive quote cmd-double-quotes commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__quote__cmd-expansions_commands] )) ||
|
||||||
|
_exhaustive__quote__cmd-expansions_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive quote cmd-expansions commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__quote__cmd-single-quotes_commands] )) ||
|
||||||
|
_exhaustive__quote__cmd-single-quotes_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive quote cmd-single-quotes commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__quote__escape-help_commands] )) ||
|
||||||
|
_exhaustive__quote__escape-help_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive quote escape-help commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__quote__help_commands] )) ||
|
||||||
|
_exhaustive__quote__help_commands() {
|
||||||
|
local commands; commands=(
|
||||||
|
'cmd-single-quotes:Can be '\''always'\'', '\''auto'\'', or '\''never'\''' \
|
||||||
|
'cmd-double-quotes:Can be "always", "auto", or "never"' \
|
||||||
|
'cmd-backticks:For more information see \`echo test\`' \
|
||||||
|
'cmd-backslash:Avoid '\''\\n'\''' \
|
||||||
|
'cmd-brackets:List packages \[filter\]' \
|
||||||
|
'cmd-expansions:Execute the shell command with \$SHELL' \
|
||||||
|
'escape-help:\\tab "'\'' New Line' \
|
||||||
|
'help:Print this message or the help of the given subcommand(s)' \
|
||||||
|
)
|
||||||
|
_describe -t commands 'exhaustive quote help commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__quote__help__cmd-backslash_commands] )) ||
|
||||||
|
_exhaustive__quote__help__cmd-backslash_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive quote help cmd-backslash commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__quote__help__cmd-backticks_commands] )) ||
|
||||||
|
_exhaustive__quote__help__cmd-backticks_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive quote help cmd-backticks commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__quote__help__cmd-brackets_commands] )) ||
|
||||||
|
_exhaustive__quote__help__cmd-brackets_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive quote help cmd-brackets commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__quote__help__cmd-double-quotes_commands] )) ||
|
||||||
|
_exhaustive__quote__help__cmd-double-quotes_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive quote help cmd-double-quotes commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__quote__help__cmd-expansions_commands] )) ||
|
||||||
|
_exhaustive__quote__help__cmd-expansions_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive quote help cmd-expansions commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__quote__help__cmd-single-quotes_commands] )) ||
|
||||||
|
_exhaustive__quote__help__cmd-single-quotes_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive quote help cmd-single-quotes commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__quote__help__escape-help_commands] )) ||
|
||||||
|
_exhaustive__quote__help__escape-help_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive quote help escape-help commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_exhaustive__quote__help__help_commands] )) ||
|
||||||
|
_exhaustive__quote__help__help_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'exhaustive quote help help commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_exhaustive__value_commands] )) ||
|
(( $+functions[_exhaustive__value_commands] )) ||
|
||||||
_exhaustive__value_commands() {
|
_exhaustive__value_commands() {
|
||||||
|
|
|
@ -137,61 +137,31 @@ _my-app__cmd-backslash_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'my-app cmd-backslash commands' commands "$@"
|
_describe -t commands 'my-app cmd-backslash commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_my-app__help__cmd-backslash_commands] )) ||
|
|
||||||
_my-app__help__cmd-backslash_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'my-app help cmd-backslash commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_my-app__cmd-backticks_commands] )) ||
|
(( $+functions[_my-app__cmd-backticks_commands] )) ||
|
||||||
_my-app__cmd-backticks_commands() {
|
_my-app__cmd-backticks_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'my-app cmd-backticks commands' commands "$@"
|
_describe -t commands 'my-app cmd-backticks commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_my-app__help__cmd-backticks_commands] )) ||
|
|
||||||
_my-app__help__cmd-backticks_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'my-app help cmd-backticks commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_my-app__cmd-brackets_commands] )) ||
|
(( $+functions[_my-app__cmd-brackets_commands] )) ||
|
||||||
_my-app__cmd-brackets_commands() {
|
_my-app__cmd-brackets_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'my-app cmd-brackets commands' commands "$@"
|
_describe -t commands 'my-app cmd-brackets commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_my-app__help__cmd-brackets_commands] )) ||
|
|
||||||
_my-app__help__cmd-brackets_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'my-app help cmd-brackets commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_my-app__cmd-double-quotes_commands] )) ||
|
(( $+functions[_my-app__cmd-double-quotes_commands] )) ||
|
||||||
_my-app__cmd-double-quotes_commands() {
|
_my-app__cmd-double-quotes_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'my-app cmd-double-quotes commands' commands "$@"
|
_describe -t commands 'my-app cmd-double-quotes commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_my-app__help__cmd-double-quotes_commands] )) ||
|
|
||||||
_my-app__help__cmd-double-quotes_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'my-app help cmd-double-quotes commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_my-app__cmd-expansions_commands] )) ||
|
(( $+functions[_my-app__cmd-expansions_commands] )) ||
|
||||||
_my-app__cmd-expansions_commands() {
|
_my-app__cmd-expansions_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'my-app cmd-expansions commands' commands "$@"
|
_describe -t commands 'my-app cmd-expansions commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_my-app__help__cmd-expansions_commands] )) ||
|
|
||||||
_my-app__help__cmd-expansions_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'my-app help cmd-expansions commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_my-app__cmd-single-quotes_commands] )) ||
|
(( $+functions[_my-app__cmd-single-quotes_commands] )) ||
|
||||||
_my-app__cmd-single-quotes_commands() {
|
_my-app__cmd-single-quotes_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'my-app cmd-single-quotes commands' commands "$@"
|
_describe -t commands 'my-app cmd-single-quotes commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_my-app__help__cmd-single-quotes_commands] )) ||
|
|
||||||
_my-app__help__cmd-single-quotes_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'my-app help cmd-single-quotes commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_my-app__help_commands] )) ||
|
(( $+functions[_my-app__help_commands] )) ||
|
||||||
_my-app__help_commands() {
|
_my-app__help_commands() {
|
||||||
local commands; commands=(
|
local commands; commands=(
|
||||||
|
@ -205,6 +175,36 @@ _my-app__help_commands() {
|
||||||
)
|
)
|
||||||
_describe -t commands 'my-app help commands' commands "$@"
|
_describe -t commands 'my-app help commands' commands "$@"
|
||||||
}
|
}
|
||||||
|
(( $+functions[_my-app__help__cmd-backslash_commands] )) ||
|
||||||
|
_my-app__help__cmd-backslash_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'my-app help cmd-backslash commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_my-app__help__cmd-backticks_commands] )) ||
|
||||||
|
_my-app__help__cmd-backticks_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'my-app help cmd-backticks commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_my-app__help__cmd-brackets_commands] )) ||
|
||||||
|
_my-app__help__cmd-brackets_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'my-app help cmd-brackets commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_my-app__help__cmd-double-quotes_commands] )) ||
|
||||||
|
_my-app__help__cmd-double-quotes_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'my-app help cmd-double-quotes commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_my-app__help__cmd-expansions_commands] )) ||
|
||||||
|
_my-app__help__cmd-expansions_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'my-app help cmd-expansions commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_my-app__help__cmd-single-quotes_commands] )) ||
|
||||||
|
_my-app__help__cmd-single-quotes_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'my-app help cmd-single-quotes commands' commands "$@"
|
||||||
|
}
|
||||||
(( $+functions[_my-app__help__help_commands] )) ||
|
(( $+functions[_my-app__help__help_commands] )) ||
|
||||||
_my-app__help__help_commands() {
|
_my-app__help__help_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
|
|
|
@ -142,36 +142,36 @@ _my-app__help__some-cmd-with-hyphens_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'my-app help some-cmd-with-hyphens commands' commands "$@"
|
_describe -t commands 'my-app help some-cmd-with-hyphens commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_my-app__some-cmd-with-hyphens_commands] )) ||
|
|
||||||
_my-app__some-cmd-with-hyphens_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'my-app some-cmd-with-hyphens commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_my-app__help__some-hidden-cmd_commands] )) ||
|
(( $+functions[_my-app__help__some-hidden-cmd_commands] )) ||
|
||||||
_my-app__help__some-hidden-cmd_commands() {
|
_my-app__help__some-hidden-cmd_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'my-app help some-hidden-cmd commands' commands "$@"
|
_describe -t commands 'my-app help some-hidden-cmd commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_my-app__some-hidden-cmd_commands] )) ||
|
|
||||||
_my-app__some-hidden-cmd_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'my-app some-hidden-cmd commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_my-app__help__some_cmd_commands] )) ||
|
(( $+functions[_my-app__help__some_cmd_commands] )) ||
|
||||||
_my-app__help__some_cmd_commands() {
|
_my-app__help__some_cmd_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'my-app help some_cmd commands' commands "$@"
|
_describe -t commands 'my-app help some_cmd commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_my-app__some_cmd_commands] )) ||
|
|
||||||
_my-app__some_cmd_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'my-app some_cmd commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_my-app__help__test_commands] )) ||
|
(( $+functions[_my-app__help__test_commands] )) ||
|
||||||
_my-app__help__test_commands() {
|
_my-app__help__test_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'my-app help test commands' commands "$@"
|
_describe -t commands 'my-app help test commands' commands "$@"
|
||||||
}
|
}
|
||||||
|
(( $+functions[_my-app__some-cmd-with-hyphens_commands] )) ||
|
||||||
|
_my-app__some-cmd-with-hyphens_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'my-app some-cmd-with-hyphens commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_my-app__some-hidden-cmd_commands] )) ||
|
||||||
|
_my-app__some-hidden-cmd_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'my-app some-hidden-cmd commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_my-app__some_cmd_commands] )) ||
|
||||||
|
_my-app__some_cmd_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'my-app some_cmd commands' commands "$@"
|
||||||
|
}
|
||||||
(( $+functions[_my-app__test_commands] )) ||
|
(( $+functions[_my-app__test_commands] )) ||
|
||||||
_my-app__test_commands() {
|
_my-app__test_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
|
|
|
@ -170,6 +170,31 @@ _my-app__help__help_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'my-app help help commands' commands "$@"
|
_describe -t commands 'my-app help help commands' commands "$@"
|
||||||
}
|
}
|
||||||
|
(( $+functions[_my-app__help__some_cmd_commands] )) ||
|
||||||
|
_my-app__help__some_cmd_commands() {
|
||||||
|
local commands; commands=(
|
||||||
|
'sub_cmd:sub-subcommand' \
|
||||||
|
)
|
||||||
|
_describe -t commands 'my-app help some_cmd commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_my-app__help__some_cmd__sub_cmd_commands] )) ||
|
||||||
|
_my-app__help__some_cmd__sub_cmd_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'my-app help some_cmd sub_cmd commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_my-app__help__test_commands] )) ||
|
||||||
|
_my-app__help__test_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'my-app help test commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_my-app__some_cmd_commands] )) ||
|
||||||
|
_my-app__some_cmd_commands() {
|
||||||
|
local commands; commands=(
|
||||||
|
'sub_cmd:sub-subcommand' \
|
||||||
|
'help:Print this message or the help of the given subcommand(s)' \
|
||||||
|
)
|
||||||
|
_describe -t commands 'my-app some_cmd commands' commands "$@"
|
||||||
|
}
|
||||||
(( $+functions[_my-app__some_cmd__help_commands] )) ||
|
(( $+functions[_my-app__some_cmd__help_commands] )) ||
|
||||||
_my-app__some_cmd__help_commands() {
|
_my-app__some_cmd__help_commands() {
|
||||||
local commands; commands=(
|
local commands; commands=(
|
||||||
|
@ -183,26 +208,6 @@ _my-app__some_cmd__help__help_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'my-app some_cmd help help commands' commands "$@"
|
_describe -t commands 'my-app some_cmd help help commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_my-app__help__some_cmd_commands] )) ||
|
|
||||||
_my-app__help__some_cmd_commands() {
|
|
||||||
local commands; commands=(
|
|
||||||
'sub_cmd:sub-subcommand' \
|
|
||||||
)
|
|
||||||
_describe -t commands 'my-app help some_cmd commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_my-app__some_cmd_commands] )) ||
|
|
||||||
_my-app__some_cmd_commands() {
|
|
||||||
local commands; commands=(
|
|
||||||
'sub_cmd:sub-subcommand' \
|
|
||||||
'help:Print this message or the help of the given subcommand(s)' \
|
|
||||||
)
|
|
||||||
_describe -t commands 'my-app some_cmd commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_my-app__help__some_cmd__sub_cmd_commands] )) ||
|
|
||||||
_my-app__help__some_cmd__sub_cmd_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'my-app help some_cmd sub_cmd commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_my-app__some_cmd__help__sub_cmd_commands] )) ||
|
(( $+functions[_my-app__some_cmd__help__sub_cmd_commands] )) ||
|
||||||
_my-app__some_cmd__help__sub_cmd_commands() {
|
_my-app__some_cmd__help__sub_cmd_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
|
@ -213,11 +218,6 @@ _my-app__some_cmd__sub_cmd_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'my-app some_cmd sub_cmd commands' commands "$@"
|
_describe -t commands 'my-app some_cmd sub_cmd commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_my-app__help__test_commands] )) ||
|
|
||||||
_my-app__help__test_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'my-app help test commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_my-app__test_commands] )) ||
|
(( $+functions[_my-app__test_commands] )) ||
|
||||||
_my-app__test_commands() {
|
_my-app__test_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
|
|
|
@ -86,21 +86,11 @@ _my-app__bar_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'my-app bar commands' commands "$@"
|
_describe -t commands 'my-app bar commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_my-app__help__bar_commands] )) ||
|
|
||||||
_my-app__help__bar_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'my-app help bar commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_my-app__foo_commands] )) ||
|
(( $+functions[_my-app__foo_commands] )) ||
|
||||||
_my-app__foo_commands() {
|
_my-app__foo_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
_describe -t commands 'my-app foo commands' commands "$@"
|
_describe -t commands 'my-app foo commands' commands "$@"
|
||||||
}
|
}
|
||||||
(( $+functions[_my-app__help__foo_commands] )) ||
|
|
||||||
_my-app__help__foo_commands() {
|
|
||||||
local commands; commands=()
|
|
||||||
_describe -t commands 'my-app help foo commands' commands "$@"
|
|
||||||
}
|
|
||||||
(( $+functions[_my-app__help_commands] )) ||
|
(( $+functions[_my-app__help_commands] )) ||
|
||||||
_my-app__help_commands() {
|
_my-app__help_commands() {
|
||||||
local commands; commands=(
|
local commands; commands=(
|
||||||
|
@ -110,6 +100,16 @@ _my-app__help_commands() {
|
||||||
)
|
)
|
||||||
_describe -t commands 'my-app help commands' commands "$@"
|
_describe -t commands 'my-app help commands' commands "$@"
|
||||||
}
|
}
|
||||||
|
(( $+functions[_my-app__help__bar_commands] )) ||
|
||||||
|
_my-app__help__bar_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'my-app help bar commands' commands "$@"
|
||||||
|
}
|
||||||
|
(( $+functions[_my-app__help__foo_commands] )) ||
|
||||||
|
_my-app__help__foo_commands() {
|
||||||
|
local commands; commands=()
|
||||||
|
_describe -t commands 'my-app help foo commands' commands "$@"
|
||||||
|
}
|
||||||
(( $+functions[_my-app__help__help_commands] )) ||
|
(( $+functions[_my-app__help__help_commands] )) ||
|
||||||
_my-app__help__help_commands() {
|
_my-app__help__help_commands() {
|
||||||
local commands; commands=()
|
local commands; commands=()
|
||||||
|
|
Loading…
Reference in a new issue