1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-21 19:10:08 +00:00

Little VCS segment cleanup.

This commit is contained in:
Dominik Ritter 2015-12-17 10:51:52 +01:00
parent 0cb1c0ffda
commit 7ed0abebd6

View file

@ -724,12 +724,10 @@ prompt_vcs() {
if [[ -n "$vcs_prompt" ]]; then if [[ -n "$vcs_prompt" ]]; then
if [[ "$VCS_WORKDIR_DIRTY" == true ]]; then if [[ "$VCS_WORKDIR_DIRTY" == true ]]; then
"$1_prompt_segment" "$0_MODIFIED" "$2" "yellow" "$DEFAULT_COLOR" "$1_prompt_segment" "$0_MODIFIED" "$2" "yellow" "$DEFAULT_COLOR" "$vcs_prompt"
else else
"$1_prompt_segment" "$0" "$2" "green" "$DEFAULT_COLOR" "$1_prompt_segment" "$0" "$2" "green" "$DEFAULT_COLOR" "$vcs_prompt"
fi fi
echo -n "$vcs_prompt "
fi fi
} }