mirror of
https://github.com/sorin-ionescu/prezto.git
synced 2025-03-12 18:05:42 +08:00
9 lines
197 B
Bash
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
|
|
}
|
|
|