mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-22 12:20:07 +00:00
don't hide empty line when invoking zsh immediately after clear
This commit is contained in:
parent
072fc38ebe
commit
8e86b0c8d4
1 changed files with 2 additions and 2 deletions
|
@ -5581,7 +5581,7 @@ _p9k_set_instant_prompt() {
|
||||||
[[ -n $RPROMPT ]] || unset RPROMPT
|
[[ -n $RPROMPT ]] || unset RPROMPT
|
||||||
}
|
}
|
||||||
|
|
||||||
typeset -gri __p9k_instant_prompt_version=24
|
typeset -gri __p9k_instant_prompt_version=25
|
||||||
|
|
||||||
_p9k_dump_instant_prompt() {
|
_p9k_dump_instant_prompt() {
|
||||||
local user=${(%):-%n}
|
local user=${(%):-%n}
|
||||||
|
@ -5654,7 +5654,7 @@ _p9k_dump_instant_prompt() {
|
||||||
local tail=${content##*$rs$key$us}
|
local tail=${content##*$rs$key$us}
|
||||||
[[ ${#tail} != ${#content} ]] || return
|
[[ ${#tail} != ${#content} ]] || return
|
||||||
local P9K_PROMPT=instant
|
local P9K_PROMPT=instant
|
||||||
if (( ! $+P9K_TTY )); then'
|
if [[ $P9K_TTY != old ]]; then'
|
||||||
if (( _POWERLEVEL9K_NEW_TTY_MAX_AGE_SECONDS < 0 )); then
|
if (( _POWERLEVEL9K_NEW_TTY_MAX_AGE_SECONDS < 0 )); then
|
||||||
>&$fd print -r -- ' typeset -gx P9K_TTY=new'
|
>&$fd print -r -- ' typeset -gx P9K_TTY=new'
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue