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
|
|
|
|
_arguments "${_arguments_options[@]}" /
|
|
|
|
'-h[Print help information]' /
|
|
|
|
'--help[Print help information]' /
|
|
|
|
'-V[Print version information]' /
|
|
|
|
'--version[Print version information]' /
|
2022-03-17 20:29:26 +00:00
|
|
|
'*-c[some config file]' /
|
|
|
|
'*-C[some config file]' /
|
|
|
|
'*--config[some config file]' /
|
|
|
|
'*--conf[some config file]' /
|
2022-03-07 20:03:46 +00:00
|
|
|
'::file -- some input file:_files' /
|
|
|
|
'::choice:(first second)' /
|
|
|
|
":: :_my-app_commands" /
|
|
|
|
"*::: :->my-app" /
|
|
|
|
&& 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)
|
|
|
|
_arguments "${_arguments_options[@]}" /
|
|
|
|
'--case=[the case to test]: : ' /
|
|
|
|
'-h[Print help information]' /
|
|
|
|
'--help[Print help information]' /
|
|
|
|
'-V[Print version information]' /
|
|
|
|
'--version[Print version information]' /
|
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
(some_cmd)
|
|
|
|
_arguments "${_arguments_options[@]}" /
|
|
|
|
'--config=[the other case to test]: : ' /
|
|
|
|
'-h[Print help information]' /
|
|
|
|
'--help[Print help information]' /
|
|
|
|
'-V[Print version information]' /
|
|
|
|
'--version[Print version information]' /
|
2022-03-17 20:35:52 +00:00
|
|
|
'::path:' /
|
2022-03-07 20:03:46 +00:00
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
(some-cmd-with-hyphens)
|
|
|
|
_arguments "${_arguments_options[@]}" /
|
|
|
|
'-h[Print help information]' /
|
|
|
|
'--help[Print help information]' /
|
|
|
|
'-V[Print version information]' /
|
|
|
|
'--version[Print version information]' /
|
|
|
|
&& ret=0
|
|
|
|
;;
|
2022-03-17 20:35:52 +00:00
|
|
|
(some-hidden-cmd)
|
|
|
|
_arguments "${_arguments_options[@]}" /
|
|
|
|
'-h[Print help information]' /
|
|
|
|
'--help[Print help information]' /
|
|
|
|
'-V[Print version information]' /
|
|
|
|
'--version[Print version information]' /
|
|
|
|
&& ret=0
|
|
|
|
;;
|
2022-03-07 20:03:46 +00:00
|
|
|
(help)
|
|
|
|
_arguments "${_arguments_options[@]}" /
|
|
|
|
'*::subcommand -- The subcommand whose help message to display:' /
|
|
|
|
&& ret=0
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|
|
|
|
|
|
|
|
(( $+functions[_my-app_commands] )) ||
|
|
|
|
_my-app_commands() {
|
|
|
|
local commands; commands=(
|
|
|
|
'test:tests things' /
|
|
|
|
'some_cmd:tests other things' /
|
|
|
|
'some-cmd-with-hyphens:' /
|
2022-03-17 20:35:52 +00:00
|
|
|
'some-hidden-cmd:' /
|
2022-03-07 20:03:46 +00:00
|
|
|
'help:Print this message or the help of the given subcommand(s)' /
|
|
|
|
)
|
|
|
|
_describe -t commands 'my-app commands' commands "$@"
|
|
|
|
}
|
|
|
|
(( $+functions[_my-app__help_commands] )) ||
|
|
|
|
_my-app__help_commands() {
|
|
|
|
local commands; commands=()
|
|
|
|
_describe -t commands 'my-app help 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 "$@"
|
|
|
|
}
|
2022-03-17 20:35:52 +00:00
|
|
|
(( $+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 "$@"
|
|
|
|
}
|
2022-03-07 20:03:46 +00:00
|
|
|
(( $+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] )) ||
|
|
|
|
_my-app__test_commands() {
|
|
|
|
local commands; commands=()
|
|
|
|
_describe -t commands 'my-app test commands' commands "$@"
|
|
|
|
}
|
|
|
|
|
|
|
|
_my-app "$@"
|