prompt_info_functions.zsh 1.39 KB
Newer Older
LFDM's avatar
LFDM committed
1
2
3
4
5
6
7
8
9
10
11
12
# *_prompt_info functions for usage in your prompt
#
# Plugin creators, please add your *_prompt_info function to the list
# of dummy implementations to help theme creators not receiving errors
# without the need of implementing conditional clauses.
#
# See also lib/bzr.zsh, lib/git.zsh and lib/nvm.zsh for
# git_prompt_info, bzr_prompt_info and nvm_prompt_info

# Dummy implementations that return false to prevent command_not_found
# errors with themes, that implement these functions
# Real implementations will be used when the respective plugins are loaded
13
14
15
16
17
18
19
20
function chruby_prompt_info \
  rbenv_prompt_info \
  hg_prompt_info \
  pyenv_prompt_info \
  svn_prompt_info \
  vi_mode_prompt_info \
  virtualenv_prompt_info \
  jenv_prompt_info \
21
  tf_prompt_info \
22
{
LFDM's avatar
LFDM committed
23
24
25
26
  return 1
}

# oh-my-zsh supports an rvm prompt by default
27
28
29
30
# get the name of the rvm ruby version
function rvm_prompt_info() {
  [ -f $HOME/.rvm/bin/rvm-prompt ] || return 1
  local rvm_prompt
LFDM's avatar
LFDM committed
31
  rvm_prompt=$($HOME/.rvm/bin/rvm-prompt ${=ZSH_THEME_RVM_PROMPT_OPTIONS} 2>/dev/null)
32
33
  [[ -z "${rvm_prompt}" ]] && return 1
  echo "${ZSH_THEME_RUBY_PROMPT_PREFIX}${rvm_prompt}${ZSH_THEME_RUBY_PROMPT_SUFFIX}"
34
35
}

36
37
38
ZSH_THEME_RVM_PROMPT_OPTIONS="i v g"


LFDM's avatar
LFDM committed
39
40
# use this to enable users to see their ruby version, no matter which
# version management system they use
41
42
43
function ruby_prompt_info() {
  echo $(rvm_prompt_info || rbenv_prompt_info || chruby_prompt_info)
}