1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-08 11:33:49 -05:00
Files
pyenv/completions/pyenv.zsh
2013-01-18 19:10:35 +09:00

19 lines
302 B
Bash

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
completions="$(pyenv completions "${words[2,-1]}")"
fi
reply=("${(ps:\n:)completions}")
}