pyenv/completions/rbenv.zsh
2012-12-28 13:25:24 -06:00

18 lines
300 B
Bash

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