Browse Source

Format clean when the Git repository is not dirty

master
Sorin Ionescu 12 years ago
parent
commit
854c67ada4
  1. 6
      plugins/git/functions/git-info

6
plugins/git/functions/git-info

@ -231,9 +231,6 @@ function git-info() { @@ -231,9 +231,6 @@ function git-info() {
zformat -f stashed_formatted "$stashed_format" "S:$stashed"
fi
# Assume that the working copy is clean.
zstyle -s ':omz:plugin:git:prompt' clean 'clean_formatted'
while IFS=$'\n' read line; do
(( line_number++ ))
@ -358,7 +355,8 @@ function git-info() { @@ -358,7 +355,8 @@ function git-info() {
if (( $dirty > 0 )); then
zstyle -s ':omz:plugin:git:prompt' dirty 'dirty_format'
zformat -f dirty_formatted "$dirty_format" "D:$dirty"
unset clean_formatted
else
zstyle -s ':omz:plugin:git:prompt' clean 'clean_formatted'
fi
# Format prompts.

Loading…
Cancel
Save