pyenv/completions/rbenv.bash
2011-08-03 22:20:25 -05:00

30 lines
580 B
Bash

_rbenv_commands() {
COMPREPLY=()
local cur="${COMP_WORDS[COMP_CWORD]}"
COMPREPLY=( $( compgen -W "$(rbenv commands)" -- $cur ) )
}
_rbenv_versions() {
COMPREPLY=()
local cur=${COMP_WORDS[COMP_CWORD]}
local versions=(system $(rbenv versions --bare))
versions="${versions[@]}"
COMPREPLY=( $( compgen -W "$versions" -- $cur ) )
}
_rbenv() {
local cur prev
COMPREPLY=()
cur="${COMP_WORDS[COMP_CWORD]}"
prev="${COMP_WORDS[COMP_CWORD-1]}"
if [ "$prev" = "set-default" ]; then
_rbenv_versions
else
_rbenv_commands
fi
}
complete -F _rbenv rbenv