diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2019-03-03 02:33:02 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2019-03-03 02:33:02 +0300 |
commit | ab072ffe194c7a4b3043151f81b4a5cb549ff850 (patch) | |
tree | 2f55dbd998bf4185b700cfc6a73154fbc86e9095 /powerlevel9k.zsh-theme | |
parent | 731d18d6f13727b122800ad776da08c04c1325c4 (diff) |
make it work with zplugin
Diffstat (limited to 'powerlevel9k.zsh-theme')
-rwxr-xr-x | powerlevel9k.zsh-theme | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/powerlevel9k.zsh-theme b/powerlevel9k.zsh-theme index f3c8a6b5..e5bdfd2d 100755 --- a/powerlevel9k.zsh-theme +++ b/powerlevel9k.zsh-theme @@ -110,8 +110,8 @@ set_default POWERLEVEL9K_MAX_CACHE_SIZE 10000 # printed. In order to cache the results of expensive computations in these functions, # we use a temporary file to communicate with the parent shell and to ask it to # change environment variables. -typeset -AH _p9k_cache_data=() -typeset -H _P9K_CACHE_CHANNEL=${$(mktemp -u)%/*}/p9k_cache_channel.$$ +typeset -gAH _p9k_cache_data=() +typeset -gH _P9K_CACHE_CHANNEL=${$(mktemp -u)%/*}/p9k_cache_channel.$$ # Note: Several performance-critical functions return results to the caller via global # variable _P9K_RETVAL rather than stdout. This is faster. @@ -147,7 +147,7 @@ _p9k_get_icon() { _P9K_RETVAL=${${(P)var_name}-$icons[$1]} } -typeset -aH _p9k_left_join=(1) +typeset -gaH _p9k_left_join=(1) for ((i = 2; i <= $#POWERLEVEL9K_LEFT_PROMPT_ELEMENTS; ++i)); do elem=$POWERLEVEL9K_LEFT_PROMPT_ELEMENTS[$i] if [[ ${elem[-7,-1]} == '_joined' ]]; then @@ -157,7 +157,7 @@ for ((i = 2; i <= $#POWERLEVEL9K_LEFT_PROMPT_ELEMENTS; ++i)); do fi done -typeset -aH _p9k_right_join=(1) +typeset -gaH _p9k_right_join=(1) for ((i = 2; i <= $#POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS; ++i)); do elem=$POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS[$i] if [[ ${elem[-7,-1]} == '_joined' ]]; then |