mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
0d1f1d09f0
This changes the zsh completion to omit the final, incomplete command line argument when invoking rbenv completions, making it consistent with the bash completion. Since no built-in completion cares about the argument list, this inconsistency only affected plugins.
18 lines
300 B
Bash
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,-2]})"
|
|
fi
|
|
|
|
reply=("${(ps:\n:)completions}")
|
|
}
|