As announced in my last post I asked my colleague Tillman if Iām allowed to post his nice extension for the zshell (as you may have concluded he gives his OK! ).
And here it is:
# Required to have the colour names
autoload colors zsh/terminfo
if [[ "$terminfo[colors]" -ge 8 ]]; then
colors
fi
for color in RED GREEN YELLOW BLUE MAGENTA CYAN WHITE; do
eval PR_$color='%{$terminfo[bold]$fg[${(L)color}]%}'
eval PR_LIGHT_$color='%{$fg[${(L)color}]%}'
(( count = $count + 1 ))
done
PR_NO_COLOUR="%{$terminfo[sgr0]%}"
# Thanks Tillman
function get_color(){
BRANCH=`git rev-parse --abbrev-ref HEAD`
case "$BRANCH" in
*master*) COLOR=${PR_RED} ;;
*hotfix*) COLOR=${PR_MAGENTA} ;;
*release-candidate*) COLOR=${PR_YELLOW} ;;
*release*) COLOR=${PR_YELLOW} ;;
*bugfix*) COLOR=${PR_CYAN} ;;
*develop*) COLOR=${PR_BLUE} ;;
*) COLOR=${PR_GREEN} ;;
esac
echo $COLOR
}The color mapping is the same as in these graphic
š branch-to-profile-mapping
Branch to Environment / Profile mapping
Applying can be done, for example, when adding this git status helper and refine it with the get_color function.
function git_status () {
local output
gs=$(git status 2> /dev/null)
if [[ $? == 128 ]]; then
return
fi
ref=$(git symbolic-ref HEAD 2> /dev/null) || return
output=${$(get_color)}" "${ref#refs/heads/}
if echo "$gs" | grep -q "Changes to be committed"; then
output=${output}${PR_GREEN}+
fi
if echo "$gs" | grep -Eq "(Changes not staged for commit|Changed but not updated)"; then
output=${output}${PR_RED}!
fi
if echo "$gs" | grep -q "Untracked files"; then
output=${output}${PR_RED}?
fi
echo "${output}${PR_NO_COLOUR}"
}
PROMPT=$'%(?,${PR_GREEN}+,${PR_RED}-)${PR_NO_COLOUR} %(4c,./%1~,%~) $(git_status) %(!.${PR_RED}#${PR_NO_COLOUR} .%% )'At least some examples:
Reference: GIT & ZShell : Colorize your shell depending on your branch from our JCG partner Peter Daum at the Coders Kitchen blog.
Do you want to know how to develop your skillset to become a Java Rockstar?
Subscribe to our newsletter to start Rocking right now!
To get you started we give you our best selling eBooks for FREE!
1. JPA Mini Book
2. JVM Troubleshooting Guide
3. JUnit Tutorial for Unit Testing
4. Java Annotations Tutorial
5. Java Interview Questions
6. Spring Interview Questions
7. Android UI Design
and many more ....
I agree to the Terms and Privacy Policy
Thank you!
We will contact you soon.
š Photo of Peter Daum
Peter DaumFebruary 27th, 2014Last Updated: February 27th, 2014
Peter DaumFebruary 27th, 2014Last Updated: February 27th, 2014
0 91 1 minute read

This site uses Akismet to reduce spam. Learn how your comment data is processed.