mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
634 B
31 lines
634 B
2 years ago
|
#compdef ${PROG:=gitea}
|
||
|
|
||
|
|
||
|
# Heavily inspired by https://github.com/urfave/cli
|
||
|
|
||
|
_cli_zsh_autocomplete() {
|
||
|
|
||
|
local -a opts
|
||
|
local cur
|
||
|
cur=${words[-1]}
|
||
|
if [[ "$cur" == "-"* ]]; then
|
||
|
opts=("${(@f)$(_CLI_ZSH_AUTOCOMPLETE_HACK=1 ${words[@]:0:#words[@]-1} ${cur} --generate-bash-completion)}")
|
||
|
else
|
||
|
opts=("${(@f)$(_CLI_ZSH_AUTOCOMPLETE_HACK=1 ${words[@]:0:#words[@]-1} --generate-bash-completion)}")
|
||
|
fi
|
||
|
|
||
|
if [[ "${opts[1]}" != "" ]]; then
|
||
|
_describe 'values' opts
|
||
|
else
|
||
|
_files
|
||
|
fi
|
||
|
|
||
|
return
|
||
|
}
|
||
|
|
||
|
if [ -z $PROG ] ; then
|
||
|
compdef _cli_zsh_autocomplete gitea
|
||
|
else
|
||
|
compdef _cli_zsh_autocomplete $(basename $PROG)
|
||
|
fi
|