pyenv/completions/pyenv.zsh

19 lines
302 B
Bash
Raw Normal View History

if [[ ! -o interactive ]]; then
return
fi
compctl -K _pyenv pyenv
_pyenv() {
local words completions
read -cA words
if [ "${#words}" -eq 2 ]; then
completions="$(pyenv commands)"
else
2013-05-01 00:14:22 -04:00
completions="$(pyenv completions "${words[2,-2]}")"
fi
reply=("${(ps:\n:)completions}")
}