diff options
author | LFDM <1986gh@gmail.com> | 2013-12-31 02:45:09 +0100 |
---|---|---|
committer | LFDM <1986gh@gmail.com> | 2013-12-31 02:45:09 +0100 |
commit | c6aacf611d51f7c00d216f77c3b32174cc3bed9c (patch) | |
tree | d5b5723512a7dfe4417c399df7c242a71234e980 /lib | |
parent | 8a887c505282b771193ac3ee6df05a1fa3f8426a (diff) | |
download | zsh-c6aacf611d51f7c00d216f77c3b32174cc3bed9c.tar.gz zsh-c6aacf611d51f7c00d216f77c3b32174cc3bed9c.tar.bz2 zsh-c6aacf611d51f7c00d216f77c3b32174cc3bed9c.zip |
Refactors ruby_prompts.zsh
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ruby_prompts.zsh | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/lib/ruby_prompts.zsh b/lib/ruby_prompts.zsh index 287b3ff0a..2ef334d5f 100644 --- a/lib/ruby_prompts.zsh +++ b/lib/ruby_prompts.zsh @@ -7,13 +7,9 @@ function rvm_prompt_info() { 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() { +# using the chruby and/or rbenv plugins will override +# these with real implementations +function chruby_prompt_info rbenv_prompt_info { return 1 } |