1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-09-27 23:22:38 +00:00
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
}