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