Close GH-67: provide arrows for push and pull.
This commit is contained in:
committed by
Sindre Sorhus
parent
de623b5b34
commit
1ec0c5c742
10
pure.zsh
10
pure.zsh
@@ -80,10 +80,12 @@ prompt_pure_precmd() {
|
|||||||
# check check if there is anything to pull
|
# check check if there is anything to pull
|
||||||
command git fetch &>/dev/null &&
|
command git fetch &>/dev/null &&
|
||||||
# check if there is an upstream configured for this branch
|
# check if there is an upstream configured for this branch
|
||||||
command git rev-parse --abbrev-ref @'{u}' &>/dev/null &&
|
command git rev-parse --abbrev-ref @'{u}' &>/dev/null && {
|
||||||
(( $(command git rev-list --right-only --count HEAD...@'{u}' 2>/dev/null) > 0 )) &&
|
local arrows=''
|
||||||
# some crazy ansi magic to inject the symbol into the previous line
|
(( $(command git rev-list --right-only --count HEAD...@'{u}' 2>/dev/null) > 0 )) && arrows='⇣'
|
||||||
print -Pn "\e7\e[A\e[1G\e[`prompt_pure_string_length $prompt_pure_preprompt`C%F{cyan}⇣%f\e8"
|
(( $(command git rev-list --left-only --count HEAD...@'{u}' 2>/dev/null) > 0 )) && arrows+='⇡'
|
||||||
|
print -Pn "\e7\e[A\e[1G\e[`prompt_pure_string_length $prompt_pure_preprompt`C%F{cyan}${arrows}%f\e8"
|
||||||
|
}
|
||||||
} &!
|
} &!
|
||||||
|
|
||||||
# reset value since `preexec` isn't always triggered
|
# reset value since `preexec` isn't always triggered
|
||||||
|
|||||||
Reference in New Issue
Block a user