0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

feat(rvm): add alias rvms (#10219)

* feat(rvm): add alias `rvms`

* docs(rvm): new alias `rvms`
This commit is contained in:
Celestino Gomes 2021-12-17 21:14:14 -03:00 committed by GitHub
parent 8d02dabbb6
commit 3a3a44c7b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -18,3 +18,4 @@ plugins=(... rvm)
| `rb21` | `rvm use ruby-2.1.2` |
| `rvm-update` | `rvm get head` |
| `gems` | `gem list` |
| `rvms` | `rvm gemset` |

View file

@ -1,7 +1,8 @@
fpath=($rvm_path/scripts/zsh/Completion $fpath)
alias rubies='rvm list rubies'
alias gemsets='rvm gemset list'
alias rvms='rvm gemset'
alias gemsets='rvms list'
local ruby18='ruby-1.8.7'
local ruby19='ruby-1.9.3'