mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
4159055117
`${words[2,-2]}` must not be quoted, otherwise completion for multiple words (e.g. `shell 3.4.1`) fails.
18 lines
300 B
Bash
18 lines
300 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,-2]})"
|
|
fi
|
|
|
|
reply=("${(ps:\n:)completions}")
|
|
}
|