21 lines
435 B
Plaintext
21 lines
435 B
Plaintext
|
#compdef wallhaven_dl
|
||
|
|
||
|
_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 wallhaven_dl
|