From 5a94a0c9ebd69349abfafae8fdab7f2c4e368210 Mon Sep 17 00:00:00 2001 From: romkatv Date: Thu, 1 Aug 2019 19:32:01 +0200 Subject: [PATCH] be less strict when detecting the presence of .p10k.zsh in .zshrc --- internal/wizard.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/wizard.zsh b/internal/wizard.zsh index b528f5f4..8f34fa1d 100755 --- a/internal/wizard.zsh +++ b/internal/wizard.zsh @@ -940,7 +940,7 @@ function write_zshrc() { local f5="'$f1'" local f6="\"$f1\"" local f7="\"$f3\"" - if [[ -n ${(@M)lines:#(#b)source[[:space:]]##($f1|$f2|$f3|$f4|$f5|$f6|$f7)*} ]]; then + if [[ -n ${(@M)lines:#(#b)[^#]#([^[:IDENT:]]|)source[[:space:]]##($f1|$f2|$f3|$f4|$f5|$f6|$f7)*} ]]; then print -P "No changes have been made to %4F$__p9k_zshrc_u%f because it already sources %2F$__p9k_cfg_path_u%f." return fi