diff --git a/plugins/rbenv/rbenv.fish b/plugins/rbenv/rbenv.fish new file mode 100644 index 0000000..f8f8a90 --- /dev/null +++ b/plugins/rbenv/rbenv.fish @@ -0,0 +1,12 @@ +function rbenv + set command $argv[1] + set -e argv[1] + + switch "$command" + case rehash shell + eval (rbenv "sh-$command" $argv) + case '*' + command rbenv "$command" $argv + end +end +