Commit 51469312 authored by r3dDoX's avatar r3dDoX
Browse files

added prefix/suffix variable for customizability

parent 59c8fcc7
...@@ -62,7 +62,8 @@ function git_prompt_ahead() { ...@@ -62,7 +62,8 @@ function git_prompt_ahead() {
# Gets the number of commits ahead from remote # Gets the number of commits ahead from remote
function git_commits_ahead() { function git_commits_ahead() {
if $(echo "$(command git log @{upstream}..HEAD 2> /dev/null)" | grep '^commit' &> /dev/null); then if $(echo "$(command git log @{upstream}..HEAD 2> /dev/null)" | grep '^commit' &> /dev/null); then
echo "$(command git log @{upstream}..HEAD | grep '^commit' | wc -l | tr -d ' ')" COMMITS=$(command git log @{upstream}..HEAD | grep '^commit' | wc -l | tr -d ' ')
echo "$ZSH_THEME_GIT_COMMITS_AHEAD_PREFIX$COMMITS$ZSH_THEME_GIT_COMMITS_AHEAD_SUFFIX"
fi fi
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment