diff --git a/src/segment_git.go b/src/segment_git.go index c7d072b0..77a4b5fc 100644 --- a/src/segment_git.go +++ b/src/segment_git.go @@ -392,7 +392,7 @@ func (g *git) parseGitStats(output []string, working bool) *gitStatus { status.added++ case "U": status.unmerged++ - case "M", "R", "C": + case "M", "R", "C", "m": status.modified++ } }