mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-22 12:20:07 +00:00
don't print concole output warning if oh-my-zsh updates during instant prompt
This commit is contained in:
parent
7b77d63e7e
commit
e371319f49
1 changed files with 45 additions and 40 deletions
|
@ -4274,6 +4274,10 @@ function _p9k_clear_instant_prompt() {
|
|||
local sp="${(%):-%b%k%f%s%u$mark${(pl.$fill.. .)}$cr%b%k%f%s%u%E}"
|
||||
print -rn -- $terminfo[rc]${(%):-%b%k%f%s%u}$terminfo[ed]
|
||||
if [[ -n ${(S)content//$'\e'*($'\a'|$'\e\\')} ]]; then
|
||||
local omz1='[Oh My Zsh] Would you like to update? [Y/n]: '
|
||||
local omz2='Updating Oh My Zsh'
|
||||
local omz3='Get your Oh My Zsh swag at: https://shop.planetargon.com/collections/oh-my-zsh'$'\n'
|
||||
if [[ -n ${${content/$omz1}/$omz2*$omz3} ]]; then
|
||||
echo -E - ""
|
||||
echo -E - "${(%):-[%3FWARNING%f]: Console output during zsh initialization detected.}"
|
||||
echo -E - ""
|
||||
|
@ -4315,6 +4319,7 @@ function _p9k_clear_instant_prompt() {
|
|||
echo - "${(%):-%3F-- console output produced during zsh initialization follows --%f}"
|
||||
echo -E - ""
|
||||
fi
|
||||
fi
|
||||
cat $__p9k_instant_prompt_output
|
||||
echo -nE - $sp
|
||||
zf_rm -f -- $__p9k_instant_prompt_output
|
||||
|
|
Loading…
Reference in a new issue