all repos — archive/dotfiles @ ec791b21441395aab300552142378ff87aa2579d

Superseded by nixfiles

zsh: Fix pure pull indicator showing when ahead of upstream
Alan Pearce alan@alanpearce.co.uk
Sun, 20 Oct 2013 09:45:14 +0100
commit

ec791b21441395aab300552142378ff87aa2579d

parent

7155b75d6f9e33c5a5c83aacfc25421139b0c5ec

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M zsh/functions/pure/prompt_pure_setupzsh/functions/pure/prompt_pure_setup
@@ -66,7 +66,7 @@ # check check if there is anything to pull 		command git fetch &>/dev/null &&
 		# check if there is an upstream configured for this branch
 		command git rev-parse --abbrev-ref @'{u}' &>/dev/null &&
-		(( $(command git rev-list --count HEAD...@'{u}' 2>/dev/null) > 0 )) &&
+		(( $(command git rev-list --right-only --count HEAD...@'{u}' 2>/dev/null) > 0 )) &&
 		# some crazy ansi magic to inject the symbol into the previous line
 		print -Pn "\e7\e[A\e[1G\e[`prompt_pure_string_length $prompt_pure_preprompt`C%F{cyan}⇣%f\e8"
 	} &!