From ae32fd58b3623b52005c72fb1edcb09ab753ad45 Mon Sep 17 00:00:00 2001 From: Roman Perepelitsa Date: Thu, 25 Jun 2020 11:09:19 +0200 Subject: [PATCH] fix `fvm` styling that has been broken by the last commit; fixes #645 --- internal/p10k.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/p10k.zsh b/internal/p10k.zsh index 38fbd9ae..7a37056b 100644 --- a/internal/p10k.zsh +++ b/internal/p10k.zsh @@ -1229,7 +1229,7 @@ function _p9k_fvm_old() { local fvm=$_p9k__parent_dirs[$?]/fvm if [[ -L $fvm ]]; then if [[ ${fvm:A} == (#b)*/versions/([^/]##)/bin/flutter ]]; then - _p9k_prompt_segment $0 blue $_p9k_color1 FLUTTER_ICON 0 '' ${match[1]//\%/%%} + _p9k_prompt_segment prompt_fvm blue $_p9k_color1 FLUTTER_ICON 0 '' ${match[1]//\%/%%} return 0 fi fi @@ -1241,7 +1241,7 @@ function _p9k_fvm_new() { local sdk=$_p9k__parent_dirs[$?]/.fvm/flutter_sdk if [[ -L $sdk ]]; then if [[ ${sdk:A} == (#b)*/versions/([^/]##) ]]; then - _p9k_prompt_segment $0 blue $_p9k_color1 FLUTTER_ICON 0 '' ${match[1]//\%/%%} + _p9k_prompt_segment prompt_fvm blue $_p9k_color1 FLUTTER_ICON 0 '' ${match[1]//\%/%%} return 0 fi fi