Add completions for pueue, tea, todoman

This commit is contained in:
crater2150 2021-06-21 12:14:07 +02:00
parent b180a08336
commit 798865b233
3 changed files with 852 additions and 0 deletions

16
compdef/_tea Normal file
View file

@ -0,0 +1,16 @@
#compdef tea
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