Browse code

RVM Update Helpers

Add helper function to get rvm head. Add helper function to link zsh
completion that comes with rvm into om-my-zsh plugin directory, but don't
overwrite the completion that comes with oh-my-zsh (oh-my-zsh's completion is
better, but I want to be able to compare).

Andrew Hodges authored on 28/05/2011 at 14:35:54
Showing 1 changed files
... ...
@@ -29,3 +29,12 @@ function rb19 {
29 29
 
30 30
 _rb19() {compadd `ls -1 $rvm_path/gems | grep "^$ruby19@" | sed -e "s/^$ruby19@//" | awk '{print $1}'`}
31 31
 compdef _rb19 rb19
32
+
33
+function rvm-update {
34
+	rvm get head
35
+	rvm reload # TODO: Reload rvm completion?
36
+}
37
+
38
+function rvm-link-completion {
39
+	ln -s "$rvm_path/scripts/zsh/Completion/_rvm" "$ZSH/plugins/rvm/_rvm.official"
40
+}