gspot/completions/_gspot
abs3nt 1faea3fd7f
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
v3
2024-02-19 10:11:47 -08:00

21 lines
421 B
Plaintext
Executable File

#compdef gspot
_cli_zsh_autocomplete() {
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
}
compdef _cli_zsh_autocomplete gspot