parent
595ac566ea
commit
8b85cf7c9e
12 changed files with 373 additions and 47 deletions
26
chezmoi/dot_config/zsh/completions/_tea
Normal file
26
chezmoi/dot_config/zsh/completions/_tea
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
#compdef $PROG
|
||||
|
||||
PROG=tea
|
||||
_CLI_ZSH_AUTOCOMPLETE_HACK=1
|
||||
|
||||
_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
|
||||
Loading…
Add table
Add a link
Reference in a new issue