mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-14 20:39:55 -05:00
16 lines
406 B
Bash
16 lines
406 B
Bash
_rbenv() {
|
|
COMPREPLY=()
|
|
local word="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
if [ "$COMP_CWORD" -eq 1 ]; then
|
|
COMPREPLY=( $(compgen -W "$(rbenv commands)" -- "$word") )
|
|
else
|
|
local words=("${COMP_WORDS[@]}")
|
|
unset words[0]
|
|
unset words[$COMP_CWORD]
|
|
local completions=$(rbenv completions "${words[@]}")
|
|
COMPREPLY=( $(compgen -W "$completions" -- "$word") )
|
|
fi
|
|
}
|
|
|
|
complete -F _rbenv rbenv
|