mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
65f0be0c20
Based on the approach by @imajes
19 lines
321 B
Bash
19 lines
321 B
Bash
if [[ ! -o interactive ]]; then
|
|
return
|
|
fi
|
|
|
|
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}")
|
|
}
|