prezto/lib/rvm.zsh
2011-06-01 02:48:26 -04:00

9 lines
197 B
Bash

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