pyenv/completions/rbenv.zsh
2011-09-13 13:12:04 -05:00

15 lines
274 B
Bash

compctl -K _rbenv rbenv
_rbenv() {
local word words completions
read -cA words
word="${words[2]}"
if [ "${#words}" -eq 2 ]; then
completions="$(rbenv commands)"
else
completions="$(rbenv completions "${word}")"
fi
reply=("${(ps:\n:)completions}")
}