mirror of
https://github.com/pyenv/pyenv.git
synced 2025-11-17 07:43:46 -05:00
Re-add zsh completion script and remove fish completion script
Looks like the zsh completion script was removed by mistake.
Fixes: https://github.com/rbenv/rbenv/issues/1215
Refs: 569d464d36
This commit is contained in:
18
completions/rbenv.zsh
Normal file
18
completions/rbenv.zsh
Normal file
@@ -0,0 +1,18 @@
|
||||
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}")
|
||||
}
|
||||
Reference in New Issue
Block a user