mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-21 20:47:00 -05:00
add completion block for rbenv-help
This commit is contained in:
parent
c18a3f9042
commit
8c3cab61c7
1 changed files with 7 additions and 0 deletions
|
@ -15,6 +15,13 @@
|
||||||
set -e
|
set -e
|
||||||
[ -n "$RBENV_DEBUG" ] && set -x
|
[ -n "$RBENV_DEBUG" ] && set -x
|
||||||
|
|
||||||
|
# Provide rbenv completions
|
||||||
|
if [ "$1" = "--complete" ]; then
|
||||||
|
echo --usage
|
||||||
|
rbenv-commands
|
||||||
|
exit
|
||||||
|
fi
|
||||||
|
|
||||||
command_path() {
|
command_path() {
|
||||||
local command="$1"
|
local command="$1"
|
||||||
command -v rbenv-"$command" || command -v rbenv-sh-"$command" || true
|
command -v rbenv-"$command" || command -v rbenv-sh-"$command" || true
|
||||||
|
|
Loading…
Reference in a new issue