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

Remove fish completion script

fish ships with a much more capable rbenv completion script since fish 2.0.

Fixes #1212
This commit is contained in:
Mislav Marohnić
2020-01-28 17:47:59 +01:00
parent 7795476af1
commit 569d464d36
3 changed files with 8 additions and 25 deletions

View File

@@ -92,14 +92,14 @@ fish )
* )
echo 'export PATH="'${RBENV_ROOT}'/shims:${PATH}"'
echo "export RBENV_SHELL=$shell"
completion="${root}/completions/rbenv.${shell}"
if [ -r "$completion" ]; then
echo "source '$completion'"
fi
;;
esac
completion="${root}/completions/rbenv.${shell}"
if [ -r "$completion" ]; then
echo "source '$completion'"
fi
if [ -z "$no_rehash" ]; then
echo 'command rbenv rehash 2>/dev/null'
fi