mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-07 20:31:01 -05:00
Do not quote completions in $reply
With an empty list of completions, zsh would complete a space / advance the cursor by a space when completing.
This commit is contained in:
parent
2297bd3741
commit
bc6be9ed9f
1 changed files with 1 additions and 1 deletions
|
@ -14,5 +14,5 @@ _pyenv() {
|
||||||
completions="$(pyenv completions ${words[2,-2]})"
|
completions="$(pyenv completions ${words[2,-2]})"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
reply=("${(ps:\n:)completions}")
|
reply=(${(ps:\n:)completions})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue