mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-02 18:51:08 -05:00
a8ecfc743e
Ensure a zsh user's prior shell options don't interfere with indexing into an array of arguments
20 lines
318 B
Bash
20 lines
318 B
Bash
if [[ ! -o interactive ]]; then
|
|
return
|
|
fi
|
|
|
|
compctl -K _rbenv rbenv
|
|
|
|
_rbenv() {
|
|
local words completions
|
|
read -cA words
|
|
|
|
emulate -L zsh
|
|
|
|
if [ "${#words}" -eq 2 ]; then
|
|
completions="$(rbenv commands)"
|
|
else
|
|
completions="$(rbenv completions ${words[2,-2]})"
|
|
fi
|
|
|
|
reply=("${(ps:\n:)completions}")
|
|
}
|