gspot/completions/_gspot
abs3nt bef9898bf2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
better completions
2024-04-02 21:30:26 -07:00

17 lines
330 B
Plaintext
Executable File

#compdef gspot
local -a opts
local cur
cur=${words[-1]}
if [[ "$cur" == "-"* ]]; then
opts=("${(@f)$(${words[@]:0:#words[@]-1} ${cur} --generate-shell-completion)}")
else
opts=("${(@f)$(${words[@]:0:#words[@]-1} --generate-shell-completion)}")
fi
if [[ "${opts[1]}" != "" ]]; then
_describe 'values' opts
else
_files
fi