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
Oh My Zsh
Commits
8a887c50
Commit
8a887c50
authored
Dec 31, 2013
by
LFDM
Browse files
Joins ruby prompt files and adds ruby_prompt_info.
parent
7aa76616
Changes
3
Hide whitespace changes
Inline
Side-by-side
lib/chruby.zsh
deleted
100644 → 0
View file @
7aa76616
# using the chruby plugin will override this with a real implementation
function
chruby_prompt_info
()
{
return
1
}
lib/rbenv.zsh
deleted
100644 → 0
View file @
7aa76616
# using the rbenv plugin will override this with a real implementation
function
rbenv_prompt_info
()
{
return
1
}
lib/r
vm
.zsh
→
lib/r
uby_prompts
.zsh
View file @
8a887c50
# get the name of the ruby version
# get the name of the
rvm
ruby version
function
rvm_prompt_info
()
{
[
-f
$HOME
/.rvm/bin/rvm-prompt
]
||
return
1
local
rvm_prompt
...
...
@@ -6,3 +6,17 @@ function rvm_prompt_info() {
[[
"
${
rvm_prompt
}
x"
==
"x"
]]
&&
return
1
echo
"
${
ZSH_THEME_RVM_PROMPT_PREFIX
:
=(
}${
rvm_prompt
}${
ZSH_THEME_RVM_PROMPT_SUFFIX
:
=)
}
"
}
# using the rbenv plugin will override this with a real implementation
function
rbenv_prompt_info
()
{
return
1
}
# using the chruby plugin will override this with a real implementation
function
chruby_prompt_info
()
{
return
1
}
function
ruby_prompt_info
()
{
echo
$(
rvm_prompt_info
||
rbenv_prompt_info
||
chruby_prompt_info
)
}
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