mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 21:41:07 +01:00
Joins ruby prompt files and adds ruby_prompt_info.
This commit is contained in:
parent
7aa766168c
commit
8a887c5052
4 changed files with 22 additions and 16 deletions
|
@ -1,4 +0,0 @@
|
||||||
# using the chruby plugin will override this with a real implementation
|
|
||||||
function chruby_prompt_info() {
|
|
||||||
return 1
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
# using the rbenv plugin will override this with a real implementation
|
|
||||||
function rbenv_prompt_info() {
|
|
||||||
return 1
|
|
||||||
}
|
|
22
lib/ruby_prompts.zsh
Normal file
22
lib/ruby_prompts.zsh
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
# get the name of the rvm ruby version
|
||||||
|
function rvm_prompt_info() {
|
||||||
|
[ -f $HOME/.rvm/bin/rvm-prompt ] || return 1
|
||||||
|
local rvm_prompt
|
||||||
|
rvm_prompt=$(eval "$HOME/.rvm/bin/rvm-prompt $ZSH_THEME_RVM_PROMPT_OPTIONS" 2>/dev/null)
|
||||||
|
[[ "${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)
|
||||||
|
}
|
|
@ -1,8 +0,0 @@
|
||||||
# get the name of the ruby version
|
|
||||||
function rvm_prompt_info() {
|
|
||||||
[ -f $HOME/.rvm/bin/rvm-prompt ] || return 1
|
|
||||||
local rvm_prompt
|
|
||||||
rvm_prompt=$(eval "$HOME/.rvm/bin/rvm-prompt $ZSH_THEME_RVM_PROMPT_OPTIONS" 2>/dev/null)
|
|
||||||
[[ "${rvm_prompt}x" == "x" ]] && return 1
|
|
||||||
echo "${ZSH_THEME_RVM_PROMPT_PREFIX:=(}${rvm_prompt}${ZSH_THEME_RVM_PROMPT_SUFFIX:=)}"
|
|
||||||
}
|
|
Loading…
Reference in a new issue