Stibbons theme: lines +/- best at left position

Signed-off-by: Gaetan Semet <gaetan@xeberon.net>
This commit is contained in:
Gaetan Semet 2013-08-01 10:30:41 +02:00
commit 7dc82789b3

View file

@ -9,8 +9,9 @@ git_custom_status() {
local cb=$(current_branch)
if [ -n "$cb" ]; then
R="$(parse_git_dirty)$ZSH_THEME_GIT_PROMPT_PREFIX$(current_branch)$ZSH_THEME_GIT_PROMPT_SUFFIX$(git_prompt_rebase_state)"
if [ ! -z $(git_changes_info) ]; then
R="$R $(git_changes_info)"
CI=$(git_changes_info)
if [ ! -z $CI ]; then
R="$CI $R"
fi
echo $R
fi