mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-11 08:00:06 +00:00
fix prompt char color in transient prompt preview for Pure
This commit is contained in:
parent
5bf5121c7e
commit
e67c2fa9f7
1 changed files with 5 additions and 3 deletions
|
@ -1265,6 +1265,8 @@ function ask_instant_prompt() {
|
||||||
|
|
||||||
function ask_transient_prompt() {
|
function ask_transient_prompt() {
|
||||||
local disable_rprompt=$((num_lines == 1))
|
local disable_rprompt=$((num_lines == 1))
|
||||||
|
local prompt_char='%76F❯%f'
|
||||||
|
[[ $style == pure ]] && prompt_char='%5F❯%f'
|
||||||
while true; do
|
while true; do
|
||||||
clear
|
clear
|
||||||
flowing -c "%BEnable Transient Prompt?%b"
|
flowing -c "%BEnable Transient Prompt?%b"
|
||||||
|
@ -1272,13 +1274,13 @@ function ask_transient_prompt() {
|
||||||
print -P "%B(y) Yes.%b"
|
print -P "%B(y) Yes.%b"
|
||||||
if (( LINES >= 25 || num_lines == 1 )); then
|
if (( LINES >= 25 || num_lines == 1 )); then
|
||||||
print -P ""
|
print -P ""
|
||||||
print -P "${(pl:$prompt_indent:: :)}%76F❯%f %2Fgit%f pull"
|
print -P "${(pl:$prompt_indent:: :)}$prompt_char %2Fgit%f pull"
|
||||||
elif (( LINES < 23 )); then
|
elif (( LINES < 23 )); then
|
||||||
print -P ""
|
print -P ""
|
||||||
else
|
else
|
||||||
print -P "${(pl:$prompt_indent:: :)}%76F❯%f %2Fgit%f pull"
|
print -P "${(pl:$prompt_indent:: :)}$prompt_char %2Fgit%f pull"
|
||||||
fi
|
fi
|
||||||
print -P "${(pl:$prompt_indent:: :)}%76F❯%f %2Fgit%f branch x"
|
print -P "${(pl:$prompt_indent:: :)}$prompt_char %2Fgit%f branch x"
|
||||||
(( empty_line )) && echo
|
(( empty_line )) && echo
|
||||||
buffer="%2Fgit%f checkout x█" print_prompt
|
buffer="%2Fgit%f checkout x█" print_prompt
|
||||||
print -P ""
|
print -P ""
|
||||||
|
|
Loading…
Reference in a new issue