diff options
Diffstat (limited to 'Functions')
-rw-r--r-- | Functions/Prompts/prompt_bart_setup | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Functions/Prompts/prompt_bart_setup b/Functions/Prompts/prompt_bart_setup index 45fcffed4..22c0c0340 100644 --- a/Functions/Prompts/prompt_bart_setup +++ b/Functions/Prompts/prompt_bart_setup @@ -178,7 +178,7 @@ prompt_bart_setup () { typeset -gA fg # A few extra niceties ... - repeat 1 case "$1:l" in + repeat 1; do case "$1:l" in (off|disable) add-zsh-hook -D precmd "prompt_*_precmd" add-zsh-hook -D preexec "prompt_*_preexec" @@ -201,7 +201,7 @@ prompt_bart_setup () { fg[%D]="%F{${4:-default}}" fg[%@]="%F{${1:-red}}" ;; - esac + esac; done prompt_bart_ps1 |