mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 13:39:02 +00:00
parent
babc6f0f9c
commit
e9fcbb334e
1 changed files with 5 additions and 1 deletions
|
@ -28,7 +28,11 @@ function __fish_rbenv_installed_rubies
|
||||||
end
|
end
|
||||||
|
|
||||||
function __fish_rbenv_official_rubies
|
function __fish_rbenv_official_rubies
|
||||||
ruby-build --definitions
|
if command -s ruby-build >/dev/null
|
||||||
|
ruby-build --definitions
|
||||||
|
else
|
||||||
|
rbenv install --list
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function __fish_rbenv_prefixes
|
function __fish_rbenv_prefixes
|
||||||
|
|
Loading…
Reference in a new issue