This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/lib/rvm.zsh

9 lines
197 B
Bash
Raw Normal View History

# Get the name of the current branch.
2010-05-19 02:53:16 -04:00
function rvm_prompt_info() {
local ruby_version=$(~/.rvm/bin/rvm-prompt 2> /dev/null)
if [[ -n "$ruby_version" ]]; then
echo "($ruby_version)"
fi
2010-05-19 02:53:16 -04:00
}