rvm.plugin.zsh 1.17 KB
Newer Older
1
2
fpath=($rvm_path/scripts/zsh/Completion $fpath)

Andrew Hodges's avatar
Andrew Hodges committed
3
4
5
alias rubies='rvm list rubies'
alias gemsets='rvm gemset list'

Andrew Hodges's avatar
Andrew Hodges committed
6
local ruby18='ruby-1.8.7-p334'
7
local ruby19='ruby-1.9.3-p194'
Andrew Hodges's avatar
Andrew Hodges committed
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29

function rb18 {
	if [ -z "$1" ]; then
		rvm use "$ruby18"
	else
		rvm use "$ruby18@$1"
	fi
}

_rb18() {compadd `ls -1 $rvm_path/gems | grep "^$ruby18@" | sed -e "s/^$ruby18@//" | awk '{print $1}'`}
compdef _rb18 rb18

function rb19 {
	if [ -z "$1" ]; then
		rvm use "$ruby19"
	else
		rvm use "$ruby19@$1"
	fi
}

_rb19() {compadd `ls -1 $rvm_path/gems | grep "^$ruby19@" | sed -e "s/^$ruby19@//" | awk '{print $1}'`}
compdef _rb19 rb19
Andrew Hodges's avatar
Andrew Hodges committed
30
31
32
33
34
35

function rvm-update {
	rvm get head
	rvm reload # TODO: Reload rvm completion?
}

Andrew Hodges's avatar
Andrew Hodges committed
36
37
38
39
40
41
# TODO: Make this usable w/o rvm.
function gems {
	local current_ruby=`rvm-prompt i v p`
	local current_gemset=`rvm-prompt g`

	gem list $@ | sed \
42
		-Ee "s/\([0-9, \.]+( .+)?\)/$fg[blue]&$reset_color/g" \
Andrew Hodges's avatar
Andrew Hodges committed
43
44
45
46
		-Ee "s|$(echo $rvm_path)|$fg[magenta]\$rvm_path$reset_color|g" \
		-Ee "s/$current_ruby@global/$fg[yellow]&$reset_color/g" \
		-Ee "s/$current_ruby$current_gemset$/$fg[green]&$reset_color/g"
}
47
48
49
50
51

function _rvm_completion {
  source $rvm_path"/scripts/zsh/Completion/_rvm"
}
compdef _rvm_completion rvm