diff options
author | Dominik Ritter <dritter03@googlemail.com> | 2019-03-30 02:05:33 +0300 |
---|---|---|
committer | Dominik Ritter <dritter03@googlemail.com> | 2019-03-30 02:05:33 +0300 |
commit | 1015b38cf2b32c1f9d2236fdcbc59c3bc6697d33 (patch) | |
tree | e3240ddf91ef15e7a791b2dd99a54fc0a3587468 /functions | |
parent | 690af685ef939307a6dd944c00ece0ae90fc0367 (diff) |
Make check for segments in use take joined segments into account
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/utilities.zsh | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/functions/utilities.zsh b/functions/utilities.zsh index 8c18bb44..388eb0e1 100755 --- a/functions/utilities.zsh +++ b/functions/utilities.zsh @@ -202,11 +202,10 @@ fi # * $1: The segment to be tested. segment_in_use() { local key=$1 - if [[ -n "${POWERLEVEL9K_LEFT_PROMPT_ELEMENTS[(r)$key]}" ]] || [[ -n "${POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS[(r)$key]}" ]]; then - return 0 - else - return 1 - fi + [[ -n "${POWERLEVEL9K_LEFT_PROMPT_ELEMENTS[(r)${key}]}" || + -n "${POWERLEVEL9K_LEFT_PROMPT_ELEMENTS[(r)${key}_joined]}" || + -n "${POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS[(r)${key}]}" || + -n "${POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS[(r)${key}_joined]}" ]] } # Print a deprecation warning if an old segment is in use. |