gspot/completions/_gspot

21 lines
421 B
Plaintext
Raw Normal View History

2024-02-19 02:51:25 +00:00
#compdef gspot
2024-02-18 09:30:19 +00:00
_cli_zsh_autocomplete() {
local -a opts
local cur
cur=${words[-1]}
if [[ "$cur" == "-"* ]]; then
2024-02-19 18:11:47 +00:00
opts=("${(@f)$(${words[@]:0:#words[@]-1} ${cur} --generate-shell-completion)}")
2024-02-18 09:30:19 +00:00
else
2024-02-19 18:11:47 +00:00
opts=("${(@f)$(${words[@]:0:#words[@]-1} --generate-shell-completion)}")
2024-02-18 09:30:19 +00:00
fi
if [[ "${opts[1]}" != "" ]]; then
_describe 'values' opts
else
_files
fi
}
2024-02-19 02:51:25 +00:00
compdef _cli_zsh_autocomplete gspot