mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
Completion for commands
This commit is contained in:
parent
4923838981
commit
69d596f56f
1 changed files with 7 additions and 3 deletions
|
@ -2,12 +2,16 @@
|
||||||
set -e
|
set -e
|
||||||
[ -n "$RBENV_DEBUG" ] && set -x
|
[ -n "$RBENV_DEBUG" ] && set -x
|
||||||
|
|
||||||
|
# Provide rbenv completions
|
||||||
|
if [ "$1" = "--complete" ]; then
|
||||||
|
echo --sh --no-sh
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
if [ "$1" = "--sh" ]; then
|
if [ "$1" = "--sh" ]; then
|
||||||
sh=1
|
sh=1
|
||||||
shift
|
shift
|
||||||
fi
|
elif [ "$1" = "--no-sh" ]; then
|
||||||
|
|
||||||
if [ "$1" = "--no-sh" ]; then
|
|
||||||
nosh=1
|
nosh=1
|
||||||
shift
|
shift
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue