mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-14 20:39:55 -05:00
f977248086
Looks like the zsh completion script was removed by mistake.
Fixes: https://github.com/rbenv/rbenv/issues/1215
Refs: 569d464d36
18 lines
300 B
Bash
18 lines
300 B
Bash
if [[ ! -o interactive ]]; then
|
|
return
|
|
fi
|
|
|
|
compctl -K _rbenv rbenv
|
|
|
|
_rbenv() {
|
|
local words completions
|
|
read -cA words
|
|
|
|
if [ "${#words}" -eq 2 ]; then
|
|
completions="$(rbenv commands)"
|
|
else
|
|
completions="$(rbenv completions ${words[2,-2]})"
|
|
fi
|
|
|
|
reply=("${(ps:\n:)completions}")
|
|
}
|