1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-11-16 17:50:09 +00:00

don't kill timer when subshells exit

This commit is contained in:
romkatv 2019-03-22 12:39:59 +01:00
parent 88d81a215f
commit 3fd0e63776

View file

@ -2113,6 +2113,7 @@ typeset -g SED_EXTENDED_REGEX_PARAMETER
typeset -g _P9K_TIMER_FIFO typeset -g _P9K_TIMER_FIFO
typeset -gi _P9K_TIMER_FD=0 typeset -gi _P9K_TIMER_FD=0
typeset -gi _P9K_TIMER_PID=0 typeset -gi _P9K_TIMER_PID=0
typeset -gi _P9K_TIMER_SUBSHELL=0
_p9k_init_timer() { _p9k_init_timer() {
_p9k_start_timer() { _p9k_start_timer() {
@ -2145,11 +2146,14 @@ _p9k_init_timer() {
" </dev/null >&$_P9K_TIMER_FD 2>/dev/null &! " </dev/null >&$_P9K_TIMER_FD 2>/dev/null &!
_P9K_TIMER_PID=$! _P9K_TIMER_PID=$!
_P9K_TIMER_SUBSHELL=$ZSH_SUBSHELL
function _p9k_kill_timer() { function _p9k_kill_timer() {
emulate -L zsh emulate -L zsh
(( _P9K_TIMER_PID )) && kill -- -$_P9K_TIMER_PID &>/dev/null if (( ZSH_SUBSHELL == _P9K_TIMER_SUBSHELL )); then
command rm -f $_P9K_TIMER_FIFO (( _P9K_TIMER_PID )) && kill -- -$_P9K_TIMER_PID &>/dev/null
command rm -f $_P9K_TIMER_FIFO
fi
} }
add-zsh-hook zshexit _p9k_kill_timer add-zsh-hook zshexit _p9k_kill_timer
} }