diff options
author | Robby Russell <robby@planetargon.com> | 2012-01-09 20:56:25 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2012-01-09 20:56:25 -0800 |
commit | 7a41498b0d4f68c537d494b5f849913361315fde (patch) | |
tree | 596dfecf5a493ad40915563bf9fb56257217d33b /plugins/rvm | |
parent | b7b2dd5802cc9ff28447151c430f47aba1f4739b (diff) | |
parent | 967e84ebaa180ad2ab1eebc9a512f94d93e84aea (diff) | |
download | zsh-7a41498b0d4f68c537d494b5f849913361315fde.tar.gz zsh-7a41498b0d4f68c537d494b5f849913361315fde.tar.bz2 zsh-7a41498b0d4f68c537d494b5f849913361315fde.zip |
Merge pull request #784 from lnxbil/967e84ebaa180ad2ab1eebc9a512f94d93e84aea
multiple version should also be highlighted
Diffstat (limited to 'plugins/rvm')
-rw-r--r-- | plugins/rvm/rvm.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/rvm/rvm.plugin.zsh b/plugins/rvm/rvm.plugin.zsh index 24621fe0b..604c00713 100644 --- a/plugins/rvm/rvm.plugin.zsh +++ b/plugins/rvm/rvm.plugin.zsh @@ -37,7 +37,7 @@ function gems { local current_gemset=`rvm-prompt g` gem list $@ | sed \ - -Ee "s/\([0-9\.]+( .+)?\)/$fg[blue]&$reset_color/g" \ + -Ee "s/\([0-9, \.]+( .+)?\)/$fg[blue]&$reset_color/g" \ -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" |