From 60e9513e2be0af8e8c620383fe7fcdd674de3b2f Mon Sep 17 00:00:00 2001 From: Benedikt Stemmildt Date: Sat, 12 Oct 2019 12:45:22 +0200 Subject: [PATCH] Fix EXC_BAD_ACCESS on MacOS Catalina Fix #259 --- config/p10k-pure.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/p10k-pure.zsh b/config/p10k-pure.zsh index 20f5b3f2..fa6a3121 100644 --- a/config/p10k-pure.zsh +++ b/config/p10k-pure.zsh @@ -123,7 +123,7 @@ # Don't show the number of commits next to the ahead/behind arrows. typeset -g POWERLEVEL9K_VCS_{COMMITS_AHEAD,COMMITS_BEHIND}_MAX_NUM=1 # Remove space between '⇣' and '⇡', and get rid of $' \b'. - typeset -g POWERLEVEL9K_VCS_CONTENT_EXPANSION=$'${${P9K_CONTENT/⇣* ⇡/⇣⇡}// \b}' + typeset -g POWERLEVEL9K_VCS_CONTENT_EXPANSION="\${\${P9K_CONTENT/⇣* ⇡/⇣⇡}// \b}" } (( ${#p10k_config_opts} )) && setopt ${p10k_config_opts[@]}