mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-17 10:10:07 +00:00
work around a bug in zsh that skips precmd hooks after trapped SIGINT if there is just one of them
This commit is contained in:
parent
1382fa7e81
commit
e4aa4588dd
1 changed files with 3 additions and 0 deletions
|
@ -5646,6 +5646,8 @@ else
|
|||
typeset -gri __p9k_dumps_enabled=0
|
||||
fi
|
||||
|
||||
_p9k_do_nothing() { true; }
|
||||
|
||||
prompt_powerlevel9k_setup() {
|
||||
(( __p9k_enabled )) && return
|
||||
|
||||
|
@ -5660,6 +5662,7 @@ prompt_powerlevel9k_setup() {
|
|||
prompt_powerlevel9k_teardown
|
||||
__p9k_enabled=1
|
||||
add-zsh-hook preexec _p9k_preexec
|
||||
add-zsh-hook precmd _p9k_do_nothing
|
||||
add-zsh-hook precmd _p9k_precmd
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue