From 3079e2f0b53efdd852a537ed25d0c294c8eadab4 Mon Sep 17 00:00:00 2001 From: Robby Russell Date: Wed, 9 Sep 2026 08:01:18 -0700 Subject: [PATCH] fix(jonathan): use a literal dash in the UTF-8 fill bar (#14054) --- themes/jonathan.zsh-theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/jonathan.zsh-theme b/themes/jonathan.zsh-theme index 1e67f17a8..66c9143bc 100644 --- a/themes/jonathan.zsh-theme +++ b/themes/jonathan.zsh-theme @@ -14,7 +14,7 @@ function theme_precmd { if (( promptsize + rubypromptsize + pwdsize + venvpromptsize + condapromptsize > TERMWIDTH )); then (( PR_PWDLEN = TERMWIDTH - promptsize )) elif [[ "${langinfo[CODESET]}" = UTF-8 ]]; then - PR_FILLBAR="\${(l:$(( TERMWIDTH - (promptsize + rubypromptsize + pwdsize + venvpromptsize + condapromptsize ) ))::${PR_HBAR}:)}" + PR_FILLBAR="\${(l:$(( TERMWIDTH - (promptsize + rubypromptsize + pwdsize + venvpromptsize + condapromptsize ) ))::─:)}" else PR_FILLBAR="${PR_SHIFT_IN}\${(l:$(( TERMWIDTH - (promptsize + rubypromptsize + pwdsize + venvpromptsize + condapromptsize ) ))::${altchar[q]:--}:)}${PR_SHIFT_OUT}" fi