12 lines
207 B
Plaintext
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
|