diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2019-10-07 11:05:50 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2019-10-07 11:05:50 +0300 |
commit | 3db63ee611e626f5eac47121f725ffa079ba80d6 (patch) | |
tree | 72513a065dfa0834dbf0e1858dbe08a2a7c4a389 | |
parent | d6a336358a1629d262d95e2e147885ca30693673 (diff) |
Revert "add POWERLEVEL9K_DEBUG_DUMP_STATE to aid in debugging #244"
This reverts commit 55a27c1f07f2f1d8225fce6935fc0d5503d63f34.
-rwxr-xr-x | internal/p10k.zsh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/internal/p10k.zsh b/internal/p10k.zsh index cd67dcf6..2dd51fa9 100755 --- a/internal/p10k.zsh +++ b/internal/p10k.zsh @@ -3359,10 +3359,6 @@ _p9k_save_status() { function _p9k_dump_state() { is-at-least 5.4 || return # `typeset -g` doesn't roundtrip in zsh prior to 5.4. - if [[ $POWERLEVEL9K_DEBUG_DUMP_STATE == true && -z $__p9k_debug_dump_state ]]; then - __p9k_debug_dump_state=done - setopt xtrace - fi local dir=${__p9k_dump_file:h} [[ -d $dir ]] || mkdir -pm 0700 $dir || return [[ -w $dir ]] || return |