From a0d6055e82bfe5aa46abac85b565d75363c74072 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Sun, 20 Oct 2013 09:14:16 +0100 Subject: [PATCH] Don't show pull indicator when ahead of remote --- pure.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pure.zsh b/pure.zsh index 275224a..be29ca6 100644 --- a/pure.zsh +++ b/pure.zsh @@ -66,7 +66,7 @@ prompt_pure_precmd() { 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" } &!