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
|
|
|
|
opts=("${(@f)$(${words[@]:0:#words[@]-1} ${cur} --generate-bash-completion)}")
|
|
|
|
else
|
|
|
|
opts=("${(@f)$(${words[@]:0:#words[@]-1} --generate-bash-completion)}")
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ "${opts[1]}" != "" ]]; then
|
|
|
|
_describe 'values' opts
|
|
|
|
else
|
|
|
|
_files
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2024-02-19 02:51:25 +00:00
|
|
|
compdef _cli_zsh_autocomplete gspot
|