mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-22 12:20:07 +00:00
bug fix: restore special handling of clear
and reset
; see #545
This commit is contained in:
parent
33a72faf5f
commit
e302a9693e
1 changed files with 6 additions and 3 deletions
|
@ -5104,7 +5104,6 @@ _p9k_preexec1() {
|
||||||
_p9k_preexec2() {
|
_p9k_preexec2() {
|
||||||
_p9k__preexec_cmd=$2
|
_p9k__preexec_cmd=$2
|
||||||
_p9k__timer_start=EPOCHREALTIME
|
_p9k__timer_start=EPOCHREALTIME
|
||||||
[[ "$2" != (clear|reset) ]] || P9K_TTY=new
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function _p9k_prompt_net_iface_init() {
|
function _p9k_prompt_net_iface_init() {
|
||||||
|
@ -6068,8 +6067,6 @@ function _p9k_on_expand() {
|
||||||
P9K_TTY=new
|
P9K_TTY=new
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
elif [[ $P9K_TTY == new && $_p9k__fully_initialized == 1 ]] && ! zle; then
|
|
||||||
P9K_TTY=old
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
__p9k_reset_state=1
|
__p9k_reset_state=1
|
||||||
|
@ -6207,6 +6204,12 @@ _p9k_precmd_impl() {
|
||||||
fi
|
fi
|
||||||
_p9k_save_status
|
_p9k_save_status
|
||||||
|
|
||||||
|
if [[ $_p9k__preexec_cmd == (clear|reset) ]]; then
|
||||||
|
P9K_TTY=new
|
||||||
|
elif [[ $P9K_TTY == new && $_p9k__fully_initialized == 1 ]] && ! zle; then
|
||||||
|
P9K_TTY=old
|
||||||
|
fi
|
||||||
|
|
||||||
_p9k__timer_start=0
|
_p9k__timer_start=0
|
||||||
_p9k__region_active=0
|
_p9k__region_active=0
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue