mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 00:00:06 +00:00
survive faulty fifos
This commit is contained in:
parent
0067e0d4a1
commit
8c695f9ad7
1 changed files with 4 additions and 1 deletions
|
@ -3438,7 +3438,10 @@ _p9k_deinit_async_pump() {
|
||||||
function _p9k_on_async_message() {
|
function _p9k_on_async_message() {
|
||||||
emulate -L zsh
|
emulate -L zsh
|
||||||
setopt no_hist_expand extended_glob no_prompt_bang prompt_{percent,subst}
|
setopt no_hist_expand extended_glob no_prompt_bang prompt_{percent,subst}
|
||||||
(( ARGC == 1 )) || return
|
if (( ARGC != 1 )); then
|
||||||
|
_p9k_deinit_async_pump
|
||||||
|
return
|
||||||
|
fi
|
||||||
local msg='' IFS=''
|
local msg='' IFS=''
|
||||||
while read -r -t -u $1 msg; do
|
while read -r -t -u $1 msg; do
|
||||||
[[ $__p9k_enabled == 1 && $1 == $_p9k_async_pump_fd ]] && eval $_p9k_async_pump_line$msg
|
[[ $__p9k_enabled == 1 && $1 == $_p9k_async_pump_fd ]] && eval $_p9k_async_pump_line$msg
|
||||||
|
|
Loading…
Reference in a new issue