From 6d20426d852307d4a26b3c5a5e2f16fe80fda822 Mon Sep 17 00:00:00 2001 From: Jon Linklater-Johnson Date: Mon, 20 Jan 2014 02:22:33 +0000 Subject: [PATCH] Final arrow colour is no longer slightly lighter Just done a clean install of Solarized theme, Powerline fonts (Meslo) and OMZ using Terminal.app Using "agnosta" theme the final > arrow (segment separator) would always show as slightly than the background colour. This change fixes that issue. --- themes/agnoster.zsh-theme | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/agnoster.zsh-theme b/themes/agnoster.zsh-theme index 01cdc80e5..f2e967f94 100644 --- a/themes/agnoster.zsh-theme +++ b/themes/agnoster.zsh-theme @@ -47,7 +47,7 @@ prompt_segment() { # End the prompt, closing any open segments prompt_end() { if [[ -n $CURRENT_BG ]]; then - echo -n " %{%k%F{$CURRENT_BG}%}$SEGMENT_SEPARATOR" + echo -n " %{%K%F{$CURRENT_BG}%}$SEGMENT_SEPARATOR" else echo -n "%{%k%}" fi