mirror of
https://gitea.com/gitea/tea.git
synced 2025-09-02 09:58:29 +02:00

partial revert of: https://gitea.com/gitea/tea/pulls/782 closes: https://gitea.com/gitea/tea/issues/784 Old versions of tea have hardcoded completion fetched from main branch Those should not be used from v0.10 onward. Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com> Reviewed-on: https://gitea.com/gitea/tea/pulls/808 Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com> Co-authored-by: TheFox0x7 <thefox0x7@gmail.com> Co-committed-by: TheFox0x7 <thefox0x7@gmail.com>
24 lines
488 B
Bash
24 lines
488 B
Bash
#compdef $PROG
|
|
|
|
_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
|
|
}
|
|
|
|
compdef _cli_zsh_autocomplete $PROG
|