diff options
author | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2020-05-30 19:48:03 +0300 |
---|---|---|
committer | Roman Perepelitsa <roman.perepelitsa@gmail.com> | 2020-05-30 19:48:03 +0300 |
commit | 189ecf8e1643e883b939f9880e71719f5e5f9480 (patch) | |
tree | 0a6b4add06e8fc4728db743d45827fb267982b56 /config/p10k-rainbow.zsh | |
parent | 127737816a1f40167a3a1332700a542ae06b18e2 (diff) |
remove traling ")" from conda even if it is not followed by space
Diffstat (limited to 'config/p10k-rainbow.zsh')
-rw-r--r-- | config/p10k-rainbow.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/p10k-rainbow.zsh b/config/p10k-rainbow.zsh index ce16ddae..ead5f819 100644 --- a/config/p10k-rainbow.zsh +++ b/config/p10k-rainbow.zsh @@ -916,7 +916,7 @@ # # The default value of POWERLEVEL9K_ANACONDA_CONTENT_EXPANSION expands to $CONDA_PROMPT_MODIFIER # without the leading '(' or the trailing ') '. - typeset -g POWERLEVEL9K_ANACONDA_CONTENT_EXPANSION='${${CONDA_PROMPT_MODIFIER#\(}%\) }' + typeset -g POWERLEVEL9K_ANACONDA_CONTENT_EXPANSION='${${${CONDA_PROMPT_MODIFIER#\(}% }%\)}' # Custom icon. # typeset -g POWERLEVEL9K_ANACONDA_VISUAL_IDENTIFIER_EXPANSION='⭐' |