This commit is contained in:
parent
786ee38671
commit
bef9898bf2
@ -1,20 +1,16 @@
|
|||||||
#compdef gspot
|
#compdef gspot
|
||||||
|
|
||||||
_cli_zsh_autocomplete() {
|
local -a opts
|
||||||
local -a opts
|
local cur
|
||||||
local cur
|
cur=${words[-1]}
|
||||||
cur=${words[-1]}
|
if [[ "$cur" == "-"* ]]; then
|
||||||
if [[ "$cur" == "-"* ]]; then
|
opts=("${(@f)$(${words[@]:0:#words[@]-1} ${cur} --generate-shell-completion)}")
|
||||||
opts=("${(@f)$(${words[@]:0:#words[@]-1} ${cur} --generate-shell-completion)}")
|
else
|
||||||
else
|
opts=("${(@f)$(${words[@]:0:#words[@]-1} --generate-shell-completion)}")
|
||||||
opts=("${(@f)$(${words[@]:0:#words[@]-1} --generate-shell-completion)}")
|
fi
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ "${opts[1]}" != "" ]]; then
|
if [[ "${opts[1]}" != "" ]]; then
|
||||||
_describe 'values' opts
|
_describe 'values' opts
|
||||||
else
|
else
|
||||||
_files
|
_files
|
||||||
fi
|
fi
|
||||||
}
|
|
||||||
|
|
||||||
compdef _cli_zsh_autocomplete gspot
|
|
||||||
|
Loading…
Reference in New Issue
Block a user