blob: 433481b90e1c93f1b193c1041f8ffaa16dbf675d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# Ported from http://sebastiancelis.com/2009/11/16/zsh-prompt-git-users/
function _gitprompt_update {
unset _git_branch
unset _git_status
unset _git_dirty
local st="$(git status 2> /dev/null)"
if [[ -n "$st" ]]; then
local -a arr
arr=(${(f)st})
if [[ $arr[1] =~ 'Not currently on any branch.' ]]; then
_git_branch='none'
else
_git_branch="${arr[1][(w)-1]}"
fi
if [[ $arr[2] =~ 'Your branch is' ]]; then
if [[ $arr[2] =~ 'ahead' ]]; then
_git_status='ahead'
elif [[ $arr[2] =~ 'diverged' ]]; then
_git_status='diverged'
else
_git_status='behind'
fi
fi
if [[ ! $st =~ 'nothing' ]]; then
_git_dirty=1
fi
fi
}
function gitprompt {
if [[ -n "$_git_branch" ]]; then
local s
[[ -z "$1" ]] && s="%{${fg[yellow]}%}"
if [[ -n "$_git_dirty" ]]; then
s+="⚡"
else
s+=":"
fi
s+="$_git_branch"
case "$_git_status" in
ahead)
s+="↑"
;;
diverged)
s+="↕"
;;
behind)
s+="↓"
;;
esac
echo "$s"
fi
}
function _gitprompt_preexec {
[[ "$1" =~ "^g" ]] && _git_command=1
}
function _gitprompt_precmd {
if [[ -n "$_git_command" ]]; then
_gitprompt_update
unset _git_command
fi
}
typeset -ga preexec_functions
typeset -ga precmd_functions
typeset -ga chpwd_functions
preexec_functions+='_gitprompt_preexec'
precmd_functions+='_gitprompt_precmd'
chpwd_functions+='_gitprompt_update'
|