Fixed output of mercurial#parse_hg_dirty

This commit is contained in:
Lucas Sampaio 2012-10-06 09:10:08 -03:00
commit 2617b627d2

View file

@ -19,12 +19,11 @@ function hg_current_branch() {
fi fi
} }
parse_hg_dirty() { function parse_hg_dirty() {
hg status 2> /dev/null \ local num_status=$(hg status | wc -l)
| awk '$1 == "?" { unknown = 1 } if [ $num_status -eq 0 ]; then
$1 != "?" { changed = 1 } echo "$ZSH_THEME_GIT_PROMPT_CLEAN"
END { else
if (changed) printf "$ZSH_THEME_GIT_PROMPT_DIRTY" echo "$ZSH_THEME_GIT_PROMPT_DIRTY"
else if (unknown) printf "$ZSH_THEME_GIT_PROMPT_CLEAN" fi
}'
} }