aboutsummaryrefslogtreecommitdiff
path: root/internal/p10k.zsh
diff options
context:
space:
mode:
Diffstat (limited to 'internal/p10k.zsh')
-rwxr-xr-xinternal/p10k.zsh5
1 files changed, 5 insertions, 0 deletions
diff --git a/internal/p10k.zsh b/internal/p10k.zsh
index 72b974ea..4b503e01 100755
--- a/internal/p10k.zsh
+++ b/internal/p10k.zsh
@@ -1956,6 +1956,11 @@ prompt_rust_version() {
_p9k_cached_cmd_stdout rustc --version || return
local v=${${_p9k_ret#rustc }%% *}
[[ -n $v ]] || return
+ local dir=$_p9k_pwd_a
+ while [[ ! -e $dir/Cargo.toml ]]; do
+ [[ $dir == / ]] && return
+ dir=${dir:h}
+ done
_p9k_prompt_segment "$0" "darkorange" "$_p9k_color1" 'RUST_ICON' 0 '' "${v//\%/%%}"
}