1
0
Fork 0

Git-plugin: Fix regex

No need to use a pipe in a "[]" and no need to use a group match when only one character is used.
pull/37/head
Colin Hebert 13 years ago
parent 048f7e1d9a
commit e378fd36a3

@ -280,9 +280,9 @@ function git-info() {
else
# Count: added/deleted/modified/renamed/unmerged/untracked
# T (type change) is undocumented, see https://raw.github.com/gitster/git/master/Documentation/RelNotes/1.7.8.2.txt
[[ "$line" == (A|M|D|C|T)[MD\ ]\ * ]] && (( added++ ))
[[ "$line" == [AMDCT][MD\ ]\ * ]] && (( added++ ))
[[ "$line" == [\ MARC]D\ * ]] && (( deleted++ ))
[[ "$line" == ?[M|T]\ * ]] && (( modified++ ))
[[ "$line" == ?[MT]\ * ]] && (( modified++ ))
[[ "$line" == R?\ * ]] && (( renamed++ ))
[[ "$line" == (?U|U?|AA|DD)\ * ]] && (( unmerged++ ))
[[ "$line" == \?\?\ * ]] && (( untracked++ ))

Loading…
Cancel
Save