Simplify _rbenv_versions

This commit is contained in:
Sam Stephenson 2011-08-03 22:22:45 -05:00
parent e4a040f1e0
commit ccf7c29fc4

View file

@ -6,10 +6,8 @@ _rbenv_commands() {
_rbenv_versions() { _rbenv_versions() {
COMPREPLY=() COMPREPLY=()
local cur=${COMP_WORDS[COMP_CWORD]} local cur="${COMP_WORDS[COMP_CWORD]}"
local versions=(system $(rbenv versions --bare)) local versions="$(echo system; rbenv versions --bare)"
versions="${versions[@]}"
COMPREPLY=( $( compgen -W "$versions" -- $cur ) ) COMPREPLY=( $( compgen -W "$versions" -- $cur ) )
} }