mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
2457419b4a
modified rbenv source for Python and renamed to pyenv.
14 lines
357 B
Bash
14 lines
357 B
Bash
_pyenv() {
|
|
COMPREPLY=()
|
|
local word="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
if [ "$COMP_CWORD" -eq 1 ]; then
|
|
COMPREPLY=( $(compgen -W "$(pyenv commands)" -- "$word") )
|
|
else
|
|
local command="${COMP_WORDS[1]}"
|
|
local completions="$(pyenv completions "$command")"
|
|
COMPREPLY=( $(compgen -W "$completions" -- "$word") )
|
|
fi
|
|
}
|
|
|
|
complete -F _pyenv pyenv
|