From 042794b6517bd19e8b03abeacb3f373ec696f2fa Mon Sep 17 00:00:00 2001 From: Joshua Peek Date: Wed, 7 Sep 2011 10:26:11 -0500 Subject: [PATCH] use -> shell --- completions/rbenv.bash | 2 +- completions/rbenv.zsh | 2 +- libexec/{rbenv-sh-use => rbenv-sh-shell} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename libexec/{rbenv-sh-use => rbenv-sh-shell} (100%) diff --git a/completions/rbenv.bash b/completions/rbenv.bash index 769e9aa2..d548a859 100644 --- a/completions/rbenv.bash +++ b/completions/rbenv.bash @@ -17,7 +17,7 @@ _rbenv() { local prev="${COMP_WORDS[COMP_CWORD-1]}" case "$prev" in - set-* | global | local | prefix | use ) + set-* | global | local | shell | prefix ) _rbenv_versions ;; * ) diff --git a/completions/rbenv.zsh b/completions/rbenv.zsh index 834b390e..39c1c6f3 100644 --- a/completions/rbenv.zsh +++ b/completions/rbenv.zsh @@ -14,7 +14,7 @@ _rbenv_versions() { _rbenv() { case "$words[2]" in - set-* | global | local | prefix | use ) _rbenv_versions ;; + set-* | global | local | shell | prefix ) _rbenv_versions ;; * ) _rbenv_commands ;; esac } diff --git a/libexec/rbenv-sh-use b/libexec/rbenv-sh-shell similarity index 100% rename from libexec/rbenv-sh-use rename to libexec/rbenv-sh-shell