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

Proof-of-concept external completions

This commit is contained in:
Sam Stephenson
2011-09-13 10:13:27 -05:00
parent eefd5ea47d
commit 6da85246c6
3 changed files with 30 additions and 23 deletions

View File

@@ -2,6 +2,13 @@
set -e
[ -n "$RBENV_DEBUG" ] && set -x
# Provide rbenv completions
if [ "$1" = "--complete" ]; then
shift
echo system
exec rbenv-versions --bare
fi
RBENV_VERSION="$1"
RBENV_VERSION_FILE=".rbenv-version"