From a06016d70364caac7d3f68cf4e33b460573acd98 Mon Sep 17 00:00:00 2001 From: Luke Randall Date: Mon, 27 Sep 2010 20:39:34 +0200 Subject: [PATCH] Show staged deletions in git status --- lib/git.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/git.zsh b/lib/git.zsh index 12a67f6ec..17e1221d2 100644 --- a/lib/git.zsh +++ b/lib/git.zsh @@ -17,7 +17,7 @@ parse_git_dirty () { echo -n "$ZSH_THEME_GIT_PROMPT_DIRTY" fi - if [[ $(echo ${gitstat} | grep -c "^[MAD]") > 0 ]]; then + if [[ $(echo ${gitstat} | grep -c "^[MARD]") > 0 ]]; then echo -n "$ZSH_THEME_GIT_PROMPT_STAGED" fi