2011-08-03 21:44:29 -04:00
|
|
|
_rbenv() {
|
|
|
|
COMPREPLY=()
|
2011-09-13 11:13:27 -04:00
|
|
|
local word="${COMP_WORDS[COMP_CWORD]}"
|
|
|
|
|
|
|
|
if [ "$COMP_CWORD" -eq 1 ]; then
|
|
|
|
COMPREPLY=( $(compgen -W "$(rbenv commands)" -- "$word") )
|
|
|
|
else
|
2012-10-04 22:28:25 -04:00
|
|
|
local words=("${COMP_WORDS[@]}")
|
2020-05-26 15:31:38 -04:00
|
|
|
unset "words[0]"
|
|
|
|
unset "words[$COMP_CWORD]"
|
2012-10-04 22:28:25 -04:00
|
|
|
local completions=$(rbenv completions "${words[@]}")
|
2011-09-13 11:13:27 -04:00
|
|
|
COMPREPLY=( $(compgen -W "$completions" -- "$word") )
|
|
|
|
fi
|
2011-08-03 21:41:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
complete -F _rbenv rbenv
|