Skip to content

Commit 4d9a438

Browse files
authored
Update visual identifiers and disable transient prompt in Powerlevel10k themes (#2)
1 parent bbdee79 commit 4d9a438

13 files changed

+78
-78
lines changed

templates/base.tera

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ whiskers:
656656
{%- else -%}
657657
typeset -g POWERLEVEL9K_STATUS_OK_FOREGROUND=$P10K_COLOR_GREEN
658658
{%- endif %}
659-
typeset -g POWERLEVEL9K_STATUS_OK_VISUAL_IDENTIFIER_EXPANSION='✔'
659+
typeset -g POWERLEVEL9K_STATUS_OK_VISUAL_IDENTIFIER_EXPANSION='' # U+EAB2
660660

661661
# Status when some part of a pipe command fails but the overall exit status is zero. It may look
662662
# like this: 1|0.
@@ -667,7 +667,7 @@ whiskers:
667667
{%- else -%}
668668
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_FOREGROUND=$P10K_COLOR_GREEN
669669
{%- endif %}
670-
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_VISUAL_IDENTIFIER_EXPANSION='✔'
670+
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_VISUAL_IDENTIFIER_EXPANSION='' # U+EAB2
671671

672672
# Status when it's just an error code (e.g., '1'). No need to show it if prompt_char is enabled as
673673
# it will signify error by turning red.
@@ -682,7 +682,7 @@ whiskers:
682682
{%- else -%}
683683
typeset -g POWERLEVEL9K_STATUS_ERROR_FOREGROUND=$P10K_COLOR_MAROON
684684
{%- endif %}
685-
typeset -g POWERLEVEL9K_STATUS_ERROR_VISUAL_IDENTIFIER_EXPANSION=''
685+
typeset -g POWERLEVEL9K_STATUS_ERROR_VISUAL_IDENTIFIER_EXPANSION=''
686686

687687
# Status when the last command was terminated by a signal.
688688
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL=true
@@ -694,7 +694,7 @@ whiskers:
694694
{%- endif %}
695695
# Use terse signal names: "INT" instead of "SIGINT(2)".
696696
typeset -g POWERLEVEL9K_STATUS_VERBOSE_SIGNAME=false
697-
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_VISUAL_IDENTIFIER_EXPANSION=''
697+
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_VISUAL_IDENTIFIER_EXPANSION=''
698698

699699
# Status when some part of a pipe command fails and the overall exit status is also non-zero.
700700
# It may look like this: 1|0.
@@ -705,7 +705,7 @@ whiskers:
705705
{%- else -%}
706706
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_FOREGROUND=$P10K_COLOR_MAROON
707707
{%- endif %}
708-
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
708+
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
709709

710710
###################[ command_execution_time: duration of the last command ]###################
711711
# Show duration of the last command if takes at least this many seconds.
@@ -2342,7 +2342,7 @@ whiskers:
23422342
# - always: Trim down prompt when accepting a command line.
23432343
# - same-dir: Trim down prompt when accepting a command line unless this is the first command
23442344
# typed after changing current working directory.
2345-
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=always
2345+
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=off
23462346

23472347
# Instant prompt mode.
23482348
#

themes/.p10k-classic-catppuccin-frappe.zsh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -576,32 +576,32 @@
576576
# it will signify success by turning green.
577577
typeset -g POWERLEVEL9K_STATUS_OK=true
578578
typeset -g POWERLEVEL9K_STATUS_OK_FOREGROUND=$P10K_COLOR_GREEN
579-
typeset -g POWERLEVEL9K_STATUS_OK_VISUAL_IDENTIFIER_EXPANSION=''
579+
typeset -g POWERLEVEL9K_STATUS_OK_VISUAL_IDENTIFIER_EXPANSION='' # U+EAB2
580580

581581
# Status when some part of a pipe command fails but the overall exit status is zero. It may look
582582
# like this: 1|0.
583583
typeset -g POWERLEVEL9K_STATUS_OK_PIPE=true
584584
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_FOREGROUND=$P10K_COLOR_GREEN
585-
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
585+
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_VISUAL_IDENTIFIER_EXPANSION='' # U+EAB2
586586

587587
# Status when it's just an error code (e.g., '1'). No need to show it if prompt_char is enabled as
588588
# it will signify error by turning red.
589589
typeset -g POWERLEVEL9K_STATUS_ERROR=true
590590
typeset -g POWERLEVEL9K_STATUS_ERROR_FOREGROUND=$P10K_COLOR_MAROON
591-
typeset -g POWERLEVEL9K_STATUS_ERROR_VISUAL_IDENTIFIER_EXPANSION=''
591+
typeset -g POWERLEVEL9K_STATUS_ERROR_VISUAL_IDENTIFIER_EXPANSION=''
592592

593593
# Status when the last command was terminated by a signal.
594594
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL=true
595595
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_FOREGROUND=$P10K_COLOR_MAROON
596596
# Use terse signal names: "INT" instead of "SIGINT(2)".
597597
typeset -g POWERLEVEL9K_STATUS_VERBOSE_SIGNAME=false
598-
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_VISUAL_IDENTIFIER_EXPANSION=''
598+
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_VISUAL_IDENTIFIER_EXPANSION=''
599599

600600
# Status when some part of a pipe command fails and the overall exit status is also non-zero.
601601
# It may look like this: 1|0.
602602
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE=true
603603
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_FOREGROUND=$P10K_COLOR_MAROON
604-
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
604+
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
605605

606606
###################[ command_execution_time: duration of the last command ]###################
607607
# Show duration of the last command if takes at least this many seconds.
@@ -1762,7 +1762,7 @@
17621762
# - always: Trim down prompt when accepting a command line.
17631763
# - same-dir: Trim down prompt when accepting a command line unless this is the first command
17641764
# typed after changing current working directory.
1765-
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=always
1765+
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=off
17661766

17671767
# Instant prompt mode.
17681768
#

themes/.p10k-classic-catppuccin-latte.zsh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -576,32 +576,32 @@
576576
# it will signify success by turning green.
577577
typeset -g POWERLEVEL9K_STATUS_OK=true
578578
typeset -g POWERLEVEL9K_STATUS_OK_FOREGROUND=$P10K_COLOR_GREEN
579-
typeset -g POWERLEVEL9K_STATUS_OK_VISUAL_IDENTIFIER_EXPANSION=''
579+
typeset -g POWERLEVEL9K_STATUS_OK_VISUAL_IDENTIFIER_EXPANSION='' # U+EAB2
580580

581581
# Status when some part of a pipe command fails but the overall exit status is zero. It may look
582582
# like this: 1|0.
583583
typeset -g POWERLEVEL9K_STATUS_OK_PIPE=true
584584
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_FOREGROUND=$P10K_COLOR_GREEN
585-
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
585+
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_VISUAL_IDENTIFIER_EXPANSION='' # U+EAB2
586586

587587
# Status when it's just an error code (e.g., '1'). No need to show it if prompt_char is enabled as
588588
# it will signify error by turning red.
589589
typeset -g POWERLEVEL9K_STATUS_ERROR=true
590590
typeset -g POWERLEVEL9K_STATUS_ERROR_FOREGROUND=$P10K_COLOR_MAROON
591-
typeset -g POWERLEVEL9K_STATUS_ERROR_VISUAL_IDENTIFIER_EXPANSION=''
591+
typeset -g POWERLEVEL9K_STATUS_ERROR_VISUAL_IDENTIFIER_EXPANSION=''
592592

593593
# Status when the last command was terminated by a signal.
594594
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL=true
595595
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_FOREGROUND=$P10K_COLOR_MAROON
596596
# Use terse signal names: "INT" instead of "SIGINT(2)".
597597
typeset -g POWERLEVEL9K_STATUS_VERBOSE_SIGNAME=false
598-
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_VISUAL_IDENTIFIER_EXPANSION=''
598+
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_VISUAL_IDENTIFIER_EXPANSION=''
599599

600600
# Status when some part of a pipe command fails and the overall exit status is also non-zero.
601601
# It may look like this: 1|0.
602602
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE=true
603603
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_FOREGROUND=$P10K_COLOR_MAROON
604-
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
604+
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
605605

606606
###################[ command_execution_time: duration of the last command ]###################
607607
# Show duration of the last command if takes at least this many seconds.
@@ -1762,7 +1762,7 @@
17621762
# - always: Trim down prompt when accepting a command line.
17631763
# - same-dir: Trim down prompt when accepting a command line unless this is the first command
17641764
# typed after changing current working directory.
1765-
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=always
1765+
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=off
17661766

17671767
# Instant prompt mode.
17681768
#

themes/.p10k-classic-catppuccin-macchiato.zsh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -576,32 +576,32 @@
576576
# it will signify success by turning green.
577577
typeset -g POWERLEVEL9K_STATUS_OK=true
578578
typeset -g POWERLEVEL9K_STATUS_OK_FOREGROUND=$P10K_COLOR_GREEN
579-
typeset -g POWERLEVEL9K_STATUS_OK_VISUAL_IDENTIFIER_EXPANSION=''
579+
typeset -g POWERLEVEL9K_STATUS_OK_VISUAL_IDENTIFIER_EXPANSION='' # U+EAB2
580580

581581
# Status when some part of a pipe command fails but the overall exit status is zero. It may look
582582
# like this: 1|0.
583583
typeset -g POWERLEVEL9K_STATUS_OK_PIPE=true
584584
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_FOREGROUND=$P10K_COLOR_GREEN
585-
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
585+
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_VISUAL_IDENTIFIER_EXPANSION='' # U+EAB2
586586

587587
# Status when it's just an error code (e.g., '1'). No need to show it if prompt_char is enabled as
588588
# it will signify error by turning red.
589589
typeset -g POWERLEVEL9K_STATUS_ERROR=true
590590
typeset -g POWERLEVEL9K_STATUS_ERROR_FOREGROUND=$P10K_COLOR_MAROON
591-
typeset -g POWERLEVEL9K_STATUS_ERROR_VISUAL_IDENTIFIER_EXPANSION=''
591+
typeset -g POWERLEVEL9K_STATUS_ERROR_VISUAL_IDENTIFIER_EXPANSION=''
592592

593593
# Status when the last command was terminated by a signal.
594594
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL=true
595595
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_FOREGROUND=$P10K_COLOR_MAROON
596596
# Use terse signal names: "INT" instead of "SIGINT(2)".
597597
typeset -g POWERLEVEL9K_STATUS_VERBOSE_SIGNAME=false
598-
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_VISUAL_IDENTIFIER_EXPANSION=''
598+
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_VISUAL_IDENTIFIER_EXPANSION=''
599599

600600
# Status when some part of a pipe command fails and the overall exit status is also non-zero.
601601
# It may look like this: 1|0.
602602
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE=true
603603
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_FOREGROUND=$P10K_COLOR_MAROON
604-
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
604+
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
605605

606606
###################[ command_execution_time: duration of the last command ]###################
607607
# Show duration of the last command if takes at least this many seconds.
@@ -1762,7 +1762,7 @@
17621762
# - always: Trim down prompt when accepting a command line.
17631763
# - same-dir: Trim down prompt when accepting a command line unless this is the first command
17641764
# typed after changing current working directory.
1765-
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=always
1765+
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=off
17661766

17671767
# Instant prompt mode.
17681768
#

themes/.p10k-classic-catppuccin-mocha.zsh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -576,32 +576,32 @@
576576
# it will signify success by turning green.
577577
typeset -g POWERLEVEL9K_STATUS_OK=true
578578
typeset -g POWERLEVEL9K_STATUS_OK_FOREGROUND=$P10K_COLOR_GREEN
579-
typeset -g POWERLEVEL9K_STATUS_OK_VISUAL_IDENTIFIER_EXPANSION=''
579+
typeset -g POWERLEVEL9K_STATUS_OK_VISUAL_IDENTIFIER_EXPANSION='' # U+EAB2
580580

581581
# Status when some part of a pipe command fails but the overall exit status is zero. It may look
582582
# like this: 1|0.
583583
typeset -g POWERLEVEL9K_STATUS_OK_PIPE=true
584584
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_FOREGROUND=$P10K_COLOR_GREEN
585-
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
585+
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_VISUAL_IDENTIFIER_EXPANSION='' # U+EAB2
586586

587587
# Status when it's just an error code (e.g., '1'). No need to show it if prompt_char is enabled as
588588
# it will signify error by turning red.
589589
typeset -g POWERLEVEL9K_STATUS_ERROR=true
590590
typeset -g POWERLEVEL9K_STATUS_ERROR_FOREGROUND=$P10K_COLOR_MAROON
591-
typeset -g POWERLEVEL9K_STATUS_ERROR_VISUAL_IDENTIFIER_EXPANSION=''
591+
typeset -g POWERLEVEL9K_STATUS_ERROR_VISUAL_IDENTIFIER_EXPANSION=''
592592

593593
# Status when the last command was terminated by a signal.
594594
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL=true
595595
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_FOREGROUND=$P10K_COLOR_MAROON
596596
# Use terse signal names: "INT" instead of "SIGINT(2)".
597597
typeset -g POWERLEVEL9K_STATUS_VERBOSE_SIGNAME=false
598-
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_VISUAL_IDENTIFIER_EXPANSION=''
598+
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_VISUAL_IDENTIFIER_EXPANSION=''
599599

600600
# Status when some part of a pipe command fails and the overall exit status is also non-zero.
601601
# It may look like this: 1|0.
602602
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE=true
603603
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_FOREGROUND=$P10K_COLOR_MAROON
604-
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
604+
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
605605

606606
###################[ command_execution_time: duration of the last command ]###################
607607
# Show duration of the last command if takes at least this many seconds.
@@ -1762,7 +1762,7 @@
17621762
# - always: Trim down prompt when accepting a command line.
17631763
# - same-dir: Trim down prompt when accepting a command line unless this is the first command
17641764
# typed after changing current working directory.
1765-
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=always
1765+
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=off
17661766

17671767
# Instant prompt mode.
17681768
#

themes/.p10k-lean-catppuccin-frappe.zsh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -550,32 +550,32 @@
550550
# it will signify success by turning green.
551551
typeset -g POWERLEVEL9K_STATUS_OK=false
552552
typeset -g POWERLEVEL9K_STATUS_OK_FOREGROUND=$P10K_COLOR_GREEN
553-
typeset -g POWERLEVEL9K_STATUS_OK_VISUAL_IDENTIFIER_EXPANSION=''
553+
typeset -g POWERLEVEL9K_STATUS_OK_VISUAL_IDENTIFIER_EXPANSION='' # U+EAB2
554554

555555
# Status when some part of a pipe command fails but the overall exit status is zero. It may look
556556
# like this: 1|0.
557557
typeset -g POWERLEVEL9K_STATUS_OK_PIPE=true
558558
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_FOREGROUND=$P10K_COLOR_GREEN
559-
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
559+
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_VISUAL_IDENTIFIER_EXPANSION='' # U+EAB2
560560

561561
# Status when it's just an error code (e.g., '1'). No need to show it if prompt_char is enabled as
562562
# it will signify error by turning red.
563563
typeset -g POWERLEVEL9K_STATUS_ERROR=false
564564
typeset -g POWERLEVEL9K_STATUS_ERROR_FOREGROUND=$P10K_COLOR_MAROON
565-
typeset -g POWERLEVEL9K_STATUS_ERROR_VISUAL_IDENTIFIER_EXPANSION=''
565+
typeset -g POWERLEVEL9K_STATUS_ERROR_VISUAL_IDENTIFIER_EXPANSION=''
566566

567567
# Status when the last command was terminated by a signal.
568568
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL=true
569569
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_FOREGROUND=$P10K_COLOR_MAROON
570570
# Use terse signal names: "INT" instead of "SIGINT(2)".
571571
typeset -g POWERLEVEL9K_STATUS_VERBOSE_SIGNAME=false
572-
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_VISUAL_IDENTIFIER_EXPANSION=''
572+
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_VISUAL_IDENTIFIER_EXPANSION=''
573573

574574
# Status when some part of a pipe command fails and the overall exit status is also non-zero.
575575
# It may look like this: 1|0.
576576
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE=true
577577
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_FOREGROUND=$P10K_COLOR_MAROON
578-
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
578+
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
579579

580580
###################[ command_execution_time: duration of the last command ]###################
581581
# Show duration of the last command if takes at least this many seconds.
@@ -1736,7 +1736,7 @@
17361736
# - always: Trim down prompt when accepting a command line.
17371737
# - same-dir: Trim down prompt when accepting a command line unless this is the first command
17381738
# typed after changing current working directory.
1739-
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=always
1739+
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=off
17401740

17411741
# Instant prompt mode.
17421742
#

themes/.p10k-lean-catppuccin-latte.zsh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -550,32 +550,32 @@
550550
# it will signify success by turning green.
551551
typeset -g POWERLEVEL9K_STATUS_OK=false
552552
typeset -g POWERLEVEL9K_STATUS_OK_FOREGROUND=$P10K_COLOR_GREEN
553-
typeset -g POWERLEVEL9K_STATUS_OK_VISUAL_IDENTIFIER_EXPANSION=''
553+
typeset -g POWERLEVEL9K_STATUS_OK_VISUAL_IDENTIFIER_EXPANSION='' # U+EAB2
554554

555555
# Status when some part of a pipe command fails but the overall exit status is zero. It may look
556556
# like this: 1|0.
557557
typeset -g POWERLEVEL9K_STATUS_OK_PIPE=true
558558
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_FOREGROUND=$P10K_COLOR_GREEN
559-
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
559+
typeset -g POWERLEVEL9K_STATUS_OK_PIPE_VISUAL_IDENTIFIER_EXPANSION='' # U+EAB2
560560

561561
# Status when it's just an error code (e.g., '1'). No need to show it if prompt_char is enabled as
562562
# it will signify error by turning red.
563563
typeset -g POWERLEVEL9K_STATUS_ERROR=false
564564
typeset -g POWERLEVEL9K_STATUS_ERROR_FOREGROUND=$P10K_COLOR_MAROON
565-
typeset -g POWERLEVEL9K_STATUS_ERROR_VISUAL_IDENTIFIER_EXPANSION=''
565+
typeset -g POWERLEVEL9K_STATUS_ERROR_VISUAL_IDENTIFIER_EXPANSION=''
566566

567567
# Status when the last command was terminated by a signal.
568568
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL=true
569569
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_FOREGROUND=$P10K_COLOR_MAROON
570570
# Use terse signal names: "INT" instead of "SIGINT(2)".
571571
typeset -g POWERLEVEL9K_STATUS_VERBOSE_SIGNAME=false
572-
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_VISUAL_IDENTIFIER_EXPANSION=''
572+
typeset -g POWERLEVEL9K_STATUS_ERROR_SIGNAL_VISUAL_IDENTIFIER_EXPANSION=''
573573

574574
# Status when some part of a pipe command fails and the overall exit status is also non-zero.
575575
# It may look like this: 1|0.
576576
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE=true
577577
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_FOREGROUND=$P10K_COLOR_MAROON
578-
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
578+
typeset -g POWERLEVEL9K_STATUS_ERROR_PIPE_VISUAL_IDENTIFIER_EXPANSION=''
579579

580580
###################[ command_execution_time: duration of the last command ]###################
581581
# Show duration of the last command if takes at least this many seconds.
@@ -1736,7 +1736,7 @@
17361736
# - always: Trim down prompt when accepting a command line.
17371737
# - same-dir: Trim down prompt when accepting a command line unless this is the first command
17381738
# typed after changing current working directory.
1739-
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=always
1739+
typeset -g POWERLEVEL9K_TRANSIENT_PROMPT=off
17401740

17411741
# Instant prompt mode.
17421742
#

0 commit comments

Comments
 (0)