2022-03-07 20:03:46 +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[@]}" : \
|
2022-09-02 12:35:12 +00:00
|
|
|
'*-c[some config file]' \
|
|
|
|
'*-C[some config file]' \
|
|
|
|
'*--config[some config file]' \
|
|
|
|
'*--conf[some config file]' \
|
2023-01-03 16:49:43 +00:00
|
|
|
'-h[Print help]' \
|
|
|
|
'--help[Print help]' \
|
|
|
|
'-V[Print version]' \
|
|
|
|
'--version[Print version]' \
|
2022-09-02 12:35:12 +00:00
|
|
|
'::file -- some input file:_files' \
|
|
|
|
'::choice:(first second)' \
|
|
|
|
":: :_my-app_commands" \
|
|
|
|
"*::: :->my-app" \
|
2022-03-07 20:03:46 +00:00
|
|
|
&& ret=0
|
|
|
|
case $state in
|
|
|
|
(my-app)
|
|
|
|
words=($line[3] "${words[@]}")
|
|
|
|
(( CURRENT += 1 ))
|
|
|
|
curcontext="${curcontext%:*:*}:my-app-command-$line[3]:"
|
|
|
|
case $line[3] in
|
|
|
|
(test)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2022-09-28 19:44:27 +00:00
|
|
|
'--case=[the case to test]: : ' \
|
2023-01-03 16:49:43 +00:00
|
|
|
'-h[Print help]' \
|
|
|
|
'--help[Print help]' \
|
|
|
|
'-V[Print version]' \
|
|
|
|
'--version[Print version]' \
|
2022-03-07 20:03:46 +00:00
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
(some_cmd)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2023-01-03 16:49:43 +00:00
|
|
|
'-h[Print help]' \
|
|
|
|
'--help[Print help]' \
|
|
|
|
'-V[Print version]' \
|
|
|
|
'--version[Print version]' \
|
2022-09-02 12:35:12 +00:00
|
|
|
":: :_my-app__some_cmd_commands" \
|
|
|
|
"*::: :->some_cmd" \
|
2022-03-07 20:03:46 +00:00
|
|
|
&& ret=0
|
|
|
|
|
|
|
|
case $state in
|
|
|
|
(some_cmd)
|
|
|
|
words=($line[1] "${words[@]}")
|
|
|
|
(( CURRENT += 1 ))
|
|
|
|
curcontext="${curcontext%:*:*}:my-app-some_cmd-command-$line[1]:"
|
|
|
|
case $line[1] in
|
|
|
|
(sub_cmd)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2022-09-28 19:44:27 +00:00
|
|
|
'--config=[the other case to test]: :((Lest\ quotes,\ aren'\''t\ escaped.\:"help,with,comma"
|
2022-09-02 12:37:37 +00:00
|
|
|
Second\ to\ trigger\ display\ of\ options\:""))' \
|
2023-01-03 16:49:43 +00:00
|
|
|
'-h[Print help (see more with '\''--help'\'')]' \
|
|
|
|
'--help[Print help (see more with '\''--help'\'')]' \
|
|
|
|
'-V[Print version]' \
|
|
|
|
'--version[Print version]' \
|
2022-03-07 20:03:46 +00:00
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
(help)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2022-09-02 12:35:12 +00:00
|
|
|
":: :_my-app__some_cmd__help_commands" \
|
|
|
|
"*::: :->help" \
|
2024-04-27 13:07:22 +00:00
|
|
|
&& ret=0
|
|
|
|
|
|
|
|
case $state in
|
|
|
|
(help)
|
|
|
|
words=($line[1] "${words[@]}")
|
|
|
|
(( CURRENT += 1 ))
|
|
|
|
curcontext="${curcontext%:*:*}:my-app-some_cmd-help-command-$line[1]:"
|
|
|
|
case $line[1] in
|
|
|
|
(sub_cmd)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2024-04-27 13:07:22 +00:00
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
(help)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2024-04-27 13:07:22 +00:00
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
(some_cmd_alias)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2024-04-27 13:07:22 +00:00
|
|
|
'-h[Print help]' \
|
|
|
|
'--help[Print help]' \
|
|
|
|
'-V[Print version]' \
|
|
|
|
'--version[Print version]' \
|
|
|
|
":: :_my-app__some_cmd_commands" \
|
|
|
|
"*::: :->some_cmd" \
|
|
|
|
&& ret=0
|
|
|
|
|
|
|
|
case $state in
|
|
|
|
(some_cmd)
|
|
|
|
words=($line[1] "${words[@]}")
|
|
|
|
(( CURRENT += 1 ))
|
|
|
|
curcontext="${curcontext%:*:*}:my-app-some_cmd-command-$line[1]:"
|
|
|
|
case $line[1] in
|
|
|
|
(sub_cmd)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2024-04-27 13:07:22 +00:00
|
|
|
'--config=[the other case to test]: :((Lest\ quotes,\ aren'\''t\ escaped.\:"help,with,comma"
|
|
|
|
Second\ to\ trigger\ display\ of\ options\:""))' \
|
|
|
|
'-h[Print help (see more with '\''--help'\'')]' \
|
|
|
|
'--help[Print help (see more with '\''--help'\'')]' \
|
|
|
|
'-V[Print version]' \
|
|
|
|
'--version[Print version]' \
|
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
(help)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2024-04-27 13:07:22 +00:00
|
|
|
":: :_my-app__some_cmd__help_commands" \
|
|
|
|
"*::: :->help" \
|
2022-08-25 05:44:07 +00:00
|
|
|
&& ret=0
|
|
|
|
|
|
|
|
case $state in
|
|
|
|
(help)
|
|
|
|
words=($line[1] "${words[@]}")
|
|
|
|
(( CURRENT += 1 ))
|
|
|
|
curcontext="${curcontext%:*:*}:my-app-some_cmd-help-command-$line[1]:"
|
|
|
|
case $line[1] in
|
|
|
|
(sub_cmd)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2022-08-25 05:44:07 +00:00
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
(help)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2022-03-07 20:03:46 +00:00
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
2022-08-25 05:44:07 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
2022-03-07 20:03:46 +00:00
|
|
|
;;
|
|
|
|
(help)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2022-09-02 12:35:12 +00:00
|
|
|
":: :_my-app__help_commands" \
|
|
|
|
"*::: :->help" \
|
2022-08-25 05:44:07 +00:00
|
|
|
&& ret=0
|
|
|
|
|
|
|
|
case $state in
|
|
|
|
(help)
|
|
|
|
words=($line[1] "${words[@]}")
|
|
|
|
(( CURRENT += 1 ))
|
|
|
|
curcontext="${curcontext%:*:*}:my-app-help-command-$line[1]:"
|
|
|
|
case $line[1] in
|
|
|
|
(test)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2022-08-25 05:44:07 +00:00
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
(some_cmd)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2022-09-02 12:35:12 +00:00
|
|
|
":: :_my-app__help__some_cmd_commands" \
|
|
|
|
"*::: :->some_cmd" \
|
2022-08-25 05:44:07 +00:00
|
|
|
&& ret=0
|
|
|
|
|
|
|
|
case $state in
|
|
|
|
(some_cmd)
|
|
|
|
words=($line[1] "${words[@]}")
|
|
|
|
(( CURRENT += 1 ))
|
|
|
|
curcontext="${curcontext%:*:*}:my-app-help-some_cmd-command-$line[1]:"
|
|
|
|
case $line[1] in
|
|
|
|
(sub_cmd)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2022-03-07 20:03:46 +00:00
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
2022-08-25 05:44:07 +00:00
|
|
|
;;
|
|
|
|
(help)
|
2024-06-07 15:45:03 +00:00
|
|
|
_arguments "${_arguments_options[@]}" : \
|
2022-08-25 05:44:07 +00:00
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
2022-03-07 20:03:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
(( $+functions[_my-app_commands] )) ||
|
|
|
|
_my-app_commands() {
|
|
|
|
local commands; commands=(
|
2022-09-02 12:35:12 +00:00
|
|
|
'test:tests things' \
|
|
|
|
'some_cmd:top level subcommand' \
|
2022-09-27 04:18:24 +00:00
|
|
|
'some_cmd_alias:top level subcommand' \
|
2022-09-02 12:35:12 +00:00
|
|
|
'help:Print this message or the help of the given subcommand(s)' \
|
2022-03-07 20:03:46 +00:00
|
|
|
)
|
|
|
|
_describe -t commands 'my-app commands' commands "$@"
|
|
|
|
}
|
|
|
|
(( $+functions[_my-app__help_commands] )) ||
|
|
|
|
_my-app__help_commands() {
|
2022-08-25 05:44:07 +00:00
|
|
|
local commands; commands=(
|
2022-09-02 12:35:12 +00:00
|
|
|
'test:tests things' \
|
|
|
|
'some_cmd:top level subcommand' \
|
|
|
|
'help:Print this message or the help of the given subcommand(s)' \
|
2022-08-25 05:44:07 +00:00
|
|
|
)
|
2022-03-07 20:03:46 +00:00
|
|
|
_describe -t commands 'my-app help commands' commands "$@"
|
|
|
|
}
|
2022-08-25 05:44:07 +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 "$@"
|
|
|
|
}
|
|
|
|
(( $+functions[_my-app__help__some_cmd_commands] )) ||
|
|
|
|
_my-app__help__some_cmd_commands() {
|
|
|
|
local commands; commands=(
|
2022-09-02 12:35:12 +00:00
|
|
|
'sub_cmd:sub-subcommand' \
|
2022-08-25 05:44:07 +00:00
|
|
|
)
|
|
|
|
_describe -t commands 'my-app help some_cmd 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__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 "$@"
|
|
|
|
}
|
2022-03-07 20:03:46 +00:00
|
|
|
(( $+functions[_my-app__some_cmd_commands] )) ||
|
|
|
|
_my-app__some_cmd_commands() {
|
|
|
|
local commands; commands=(
|
2022-09-02 12:35:12 +00:00
|
|
|
'sub_cmd:sub-subcommand' \
|
|
|
|
'help:Print this message or the help of the given subcommand(s)' \
|
2022-03-07 20:03:46 +00:00
|
|
|
)
|
|
|
|
_describe -t commands 'my-app some_cmd 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__some_cmd__help_commands] )) ||
|
|
|
|
_my-app__some_cmd__help_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 help commands' commands "$@"
|
|
|
|
}
|
|
|
|
(( $+functions[_my-app__some_cmd__help__help_commands] )) ||
|
|
|
|
_my-app__some_cmd__help__help_commands() {
|
2022-08-25 05:44:07 +00:00
|
|
|
local 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
|
|
|
_describe -t commands 'my-app some_cmd help help commands' commands "$@"
|
2022-08-25 05:44:07 +00:00
|
|
|
}
|
|
|
|
(( $+functions[_my-app__some_cmd__help__sub_cmd_commands] )) ||
|
|
|
|
_my-app__some_cmd__help__sub_cmd_commands() {
|
|
|
|
local commands; commands=()
|
|
|
|
_describe -t commands 'my-app some_cmd help sub_cmd commands' commands "$@"
|
|
|
|
}
|
2022-03-07 20:03:46 +00:00
|
|
|
(( $+functions[_my-app__some_cmd__sub_cmd_commands] )) ||
|
|
|
|
_my-app__some_cmd__sub_cmd_commands() {
|
|
|
|
local commands; commands=()
|
|
|
|
_describe -t commands 'my-app some_cmd sub_cmd commands' commands "$@"
|
|
|
|
}
|
|
|
|
(( $+functions[_my-app__test_commands] )) ||
|
|
|
|
_my-app__test_commands() {
|
|
|
|
local commands; commands=()
|
|
|
|
_describe -t commands 'my-app test commands' commands "$@"
|
|
|
|
}
|
|
|
|
|
2023-02-27 08:56:38 +00:00
|
|
|
if [ "$funcstack[1]" = "_my-app" ]; then
|
|
|
|
_my-app "$@"
|
|
|
|
else
|
|
|
|
compdef _my-app my-app
|
|
|
|
fi
|