Files
tea/_tea
2026-03-17 22:41:16 +01:00

12 lines
207 B
Plaintext

#compdef tea
_tea() {
local -a opts
local cur
cur=${words[-1]}
opts=("${(@f)$(${words[@]:0:#words[@]-1} --generate-shell-completion)}")
compadd -S '' -- "${opts[@]}"
}
compdef _tea tea