21 lines
421 B
Plaintext
Raw Normal View History

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