2023-05-10 18:21:01 +00:00
|
|
|
#compdef my-app
|
|
|
|
|
|
|
|
autoload -U is-at-least
|
|
|
|
|
|
|
|
_my-app() {
|
|
|
|
typeset -A opt_args
|
|
|
|
typeset -a _arguments_options
|
|
|
|
local ret=1
|
|
|
|
|
|
|
|
if is-at-least 5.2; then
|
|
|
|
_arguments_options=(-s -S -C)
|
|
|
|
else
|
|
|
|
_arguments_options=(-s -C)
|
|
|
|
fi
|
|
|
|
|
|
|
|
local context curcontext="$curcontext" state line
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2023-05-10 18:21:01 +00:00
|
|
|
'-h[Print help]' \
|
|
|
|
'--help[Print help]' \
|
|
|
|
'::free:' \
|
|
|
|
":: :_my-app_commands" \
|
|
|
|
"*::: :->my-app" \
|
|
|
|
&& ret=0
|
|
|
|
case $state in
|
|
|
|
(my-app)
|
|
|
|
words=($line[2] "${words[@]}")
|
|
|
|
(( CURRENT += 1 ))
|
|
|
|
curcontext="${curcontext%:*:*}:my-app-command-$line[2]:"
|
|
|
|
case $line[2] in
|
|
|
|
(foo)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2023-05-10 18:21:01 +00:00
|
|
|
'-h[Print help]' \
|
|
|
|
'--help[Print help]' \
|
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
(bar)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2023-05-10 18:21:01 +00:00
|
|
|
'-h[Print help]' \
|
|
|
|
'--help[Print help]' \
|
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
(help)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2023-05-10 18:21:01 +00:00
|
|
|
":: :_my-app__help_commands" \
|
|
|
|
"*::: :->help" \
|
|
|
|
&& ret=0
|
|
|
|
|
|
|
|
case $state in
|
|
|
|
(help)
|
|
|
|
words=($line[1] "${words[@]}")
|
|
|
|
(( CURRENT += 1 ))
|
|
|
|
curcontext="${curcontext%:*:*}:my-app-help-command-$line[1]:"
|
|
|
|
case $line[1] in
|
|
|
|
(foo)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2023-05-10 18:21:01 +00:00
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
(bar)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2023-05-10 18:21:01 +00:00
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
(help)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2023-05-10 18:21:01 +00:00
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
(( $+functions[_my-app_commands] )) ||
|
|
|
|
_my-app_commands() {
|
|
|
|
local commands; commands=(
|
|
|
|
'foo:' \
|
|
|
|
'bar:' \
|
|
|
|
'help:Print this message or the help of the given subcommand(s)' \
|
|
|
|
)
|
|
|
|
_describe -t commands 'my-app commands' commands "$@"
|
|
|
|
}
|
|
|
|
(( $+functions[_my-app__bar_commands] )) ||
|
|
|
|
_my-app__bar_commands() {
|
|
|
|
local commands; commands=()
|
|
|
|
_describe -t commands 'my-app bar commands' commands "$@"
|
|
|
|
}
|
|
|
|
(( $+functions[_my-app__foo_commands] )) ||
|
|
|
|
_my-app__foo_commands() {
|
|
|
|
local commands; commands=()
|
|
|
|
_describe -t commands 'my-app foo commands' commands "$@"
|
|
|
|
}
|
|
|
|
(( $+functions[_my-app__help_commands] )) ||
|
|
|
|
_my-app__help_commands() {
|
|
|
|
local commands; commands=(
|
|
|
|
'foo:' \
|
|
|
|
'bar:' \
|
|
|
|
'help:Print this message or the help of the given subcommand(s)' \
|
|
|
|
)
|
|
|
|
_describe -t commands 'my-app help commands' commands "$@"
|
|
|
|
}
|
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.
2024-04-27 13:06:45 +00:00
|
|
|
(( $+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 "$@"
|
|
|
|
}
|
2023-05-10 18:21:01 +00:00
|
|
|
(( $+functions[_my-app__help__help_commands] )) ||
|
|
|
|
_my-app__help__help_commands() {
|
|
|
|
local commands; commands=()
|
|
|
|
_describe -t commands 'my-app help help commands' commands "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
if [ "$funcstack[1]" = "_my-app" ]; then
|
|
|
|
_my-app "$@"
|
|
|
|
else
|
|
|
|
compdef _my-app my-app
|
|
|
|
fi
|