mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Merge pull request #231 from blueyed/fix-zsh-completion-for-none
Do not quote completions in $reply
This commit is contained in:
commit
a43f7f5341
1 changed files with 1 additions and 1 deletions
|
@ -14,5 +14,5 @@ _pyenv() {
|
|||
completions="$(pyenv completions ${words[2,-2]})"
|
||||
fi
|
||||
|
||||
reply=("${(ps:\n:)completions}")
|
||||
reply=(${(ps:\n:)completions})
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue