Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Ohmyzsh
Commits
d20c111d
Commit
d20c111d
authored
Aug 15, 2015
by
Chayoung You
Browse files
rvm plugin: Fix `gems` to work with GNU sed
Fix #1579.
parent
3d5b3430
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/rvm/rvm.plugin.zsh
View file @
d20c111d
...
...
@@ -61,11 +61,11 @@ function gems {
local
current_ruby
=
`
rvm-prompt i v p
`
local
current_gemset
=
`
rvm-prompt g
`
gem list
$@
|
sed
\
-
E
e
"s/
\(
[0-9,
\.
]+( .+)?
\)
/
$fg
[blue]&
$reset_color
/g"
\
-
E
e
"s|
$(
echo
$rvm_path
)
|
$fg
[magenta]
\$
rvm_path
$reset_color
|g"
\
-
E
e
"s/
$current_ruby
@global/
$fg
[yellow]&
$reset_color
/g"
\
-
E
e
"s/
$current_ruby$current_gemset$/$fg
[green]&
$reset_color
/g"
gem list
$@
|
sed
-E
\
-e
"s/
\(
[0-9,
\.
]+( .+)?
\)
/
$fg
[blue]&
$reset_color
/g"
\
-e
"s|
$(
echo
$rvm_path
)
|
$fg
[magenta]
\$
rvm_path
$reset_color
|g"
\
-e
"s/
$current_ruby
@global/
$fg
[yellow]&
$reset_color
/g"
\
-e
"s/
$current_ruby$current_gemset$/$fg
[green]&
$reset_color
/g"
}
function
_rvm_completion
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment