summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorRobby Russell <robby@planetargon.com>2014-11-19 12:41:12 -0800
committerRobby Russell <robby@planetargon.com>2014-11-19 12:41:12 -0800
commit0222e774978232c03795b0e858d105aba6ed8123 (patch)
treeac7bc9214d63e8e1d87b9ddcc13fce91b623add7 /lib
parent6a496d2ccabbb112c90b7669dc4e0c1839988fd1 (diff)
parenta301f567e3a7ac2eb0b1f77d6ff97f50d63ba864 (diff)
downloadzsh-0222e774978232c03795b0e858d105aba6ed8123.tar.gz
zsh-0222e774978232c03795b0e858d105aba6ed8123.tar.bz2
zsh-0222e774978232c03795b0e858d105aba6ed8123.zip
Merge pull request #3333 from mcornella/fix-git-hide-dirty
Switch back to oh-my-zsh.hide-dirty setting again
Diffstat (limited to 'lib')
-rw-r--r--lib/git.zsh2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git.zsh b/lib/git.zsh
index aba095422..748520a6f 100644
--- a/lib/git.zsh
+++ b/lib/git.zsh
@@ -13,7 +13,7 @@ parse_git_dirty() {
local STATUS=''
local FLAGS
FLAGS=('--porcelain')
- if [[ "$(command git config --get oh-my-zsh.hide-status)" != "1" ]]; then
+ if [[ "$(command git config --get oh-my-zsh.hide-dirty)" != "1" ]]; then
if [[ $POST_1_7_2_GIT -gt 0 ]]; then
FLAGS+='--ignore-submodules=dirty'
fi