mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
20 lines
321 B
Bash
20 lines
321 B
Bash
|
if [[ ! -o interactive ]]; then
|
||
|
return
|
||
|
fi
|
||
|
|
||
|
compctl -K _pyenv pyenv
|
||
|
|
||
|
_pyenv() {
|
||
|
local word words completions
|
||
|
read -cA words
|
||
|
word="${words[2]}"
|
||
|
|
||
|
if [ "${#words}" -eq 2 ]; then
|
||
|
completions="$(pyenv commands)"
|
||
|
else
|
||
|
completions="$(pyenv completions "${word}")"
|
||
|
fi
|
||
|
|
||
|
reply=("${(ps:\n:)completions}")
|
||
|
}
|