mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-22 17:13:39 +00:00
Add zsh support for completion of full command line
This commit is contained in:
parent
3ceeb72ac6
commit
f635c8715c
1 changed files with 2 additions and 3 deletions
|
@ -5,14 +5,13 @@ fi
|
||||||
compctl -K _rbenv rbenv
|
compctl -K _rbenv rbenv
|
||||||
|
|
||||||
_rbenv() {
|
_rbenv() {
|
||||||
local word words completions
|
local words completions
|
||||||
read -cA words
|
read -cA words
|
||||||
word="${words[2]}"
|
|
||||||
|
|
||||||
if [ "${#words}" -eq 2 ]; then
|
if [ "${#words}" -eq 2 ]; then
|
||||||
completions="$(rbenv commands)"
|
completions="$(rbenv commands)"
|
||||||
else
|
else
|
||||||
completions="$(rbenv completions "${word}")"
|
completions="$(rbenv completions ${words[2,-1]})"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
reply=("${(ps:\n:)completions}")
|
reply=("${(ps:\n:)completions}")
|
||||||
|
|
Loading…
Reference in a new issue