|
|
@ -1392,16 +1392,10 @@ prompt_simple_dir() {
|
|
|
|
################################################################
|
|
|
|
################################################################
|
|
|
|
# Segment to display Rust version number
|
|
|
|
# Segment to display Rust version number
|
|
|
|
prompt_rust_version() {
|
|
|
|
prompt_rust_version() {
|
|
|
|
local rust_version
|
|
|
|
_p9k_cached_cmd_stdout rustc --version || return
|
|
|
|
rust_version=$(command rustc --version 2>/dev/null)
|
|
|
|
local v=${${_P9K_RETVAL#rustc }%% *}
|
|
|
|
# Remove "rustc " (including the whitespace) from the beginning
|
|
|
|
[[ -n $v ]] || return
|
|
|
|
# of the version string and remove everything after the next
|
|
|
|
"$1_prompt_segment" "$0" "$2" "darkorange" "$DEFAULT_COLOR" 'RUST_ICON' 0 '' "${v//\%/%%}"
|
|
|
|
# whitespace. This way we'll end up with only the version.
|
|
|
|
|
|
|
|
rust_version=${${rust_version/rustc /}%% *}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if [[ -n "$rust_version" ]]; then
|
|
|
|
|
|
|
|
"$1_prompt_segment" "$0" "$2" "darkorange" "$DEFAULT_COLOR" 'RUST_ICON' 0 '' "${rust_version//\%/%%}"
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# RSpec test ratio
|
|
|
|
# RSpec test ratio
|
|
|
|