1
0
Fork 0
dotfiles/fish/fish/functions/rbenv.fish

12 lines
213 B
Fish

function rbenv
set -l command $argv[1]
[ (count $argv) -gt 1 ]; and set -l args $argv[2..-1]
switch $command
case shell
rbenv_shell $args
case '*'
command rbenv $command $args
end
end