don't set prompt_cr
Some users prefer to have broken prompt if the last line of command output doesn't end in \n. Powerlevel10k should respect their choice. See #197.
This commit is contained in:
parent
8ace14beb0
commit
1547336bb6
|
@ -3262,9 +3262,10 @@ _p9k_precmd() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
unsetopt localoptions
|
unsetopt localoptions
|
||||||
prompt_opts=(cr percent subst)
|
prompt_opts=(percent subst)
|
||||||
[[ ! -o prompt_sp ]] || prompt_opts+=sp
|
[[ ! -o prompt_sp ]] || prompt_opts+=sp
|
||||||
setopt nopromptbang prompt{cr,percent,subst}
|
[[ ! -o prompt_cr ]] || prompt_opts+=cr
|
||||||
|
setopt nopromptbang prompt{percent,subst}
|
||||||
|
|
||||||
_p9k_timer_end=EPOCHREALTIME
|
_p9k_timer_end=EPOCHREALTIME
|
||||||
if (( _p9k_timer_start )); then
|
if (( _p9k_timer_start )); then
|
||||||
|
|
Loading…
Reference in New Issue