mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-26 02:12:33 +01:00
8 lines
156 B
Bash
8 lines
156 B
Bash
function rvm_ruby_prompt {
|
|
if (declare -f rvm > /dev/null) {
|
|
if [[ -x $MY_RUBY_HOME ]]
|
|
then ruby -v | sed 's/\([^(]*\).*/\1/'
|
|
fi
|
|
}
|
|
}
|
|
|