1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-13 13:53:53 -05:00

Merge pull request #215 from blueyed/fix-zsh-completion

Fix zsh completion with multiple words
This commit is contained in:
Yamashita, Yuu
2014-08-11 10:56:26 +09:00

View File

@@ -11,7 +11,7 @@ _pyenv() {
if [ "${#words}" -eq 2 ]; then if [ "${#words}" -eq 2 ]; then
completions="$(pyenv commands)" completions="$(pyenv commands)"
else else
completions="$(pyenv completions "${words[2,-2]}")" completions="$(pyenv completions ${words[2,-2]})"
fi fi
reply=("${(ps:\n:)completions}") reply=("${(ps:\n:)completions}")