diff options
author | steeef <steeef@gmail.com> | 2010-10-01 14:17:13 -0700 |
---|---|---|
committer | steeef <steeef@gmail.com> | 2010-10-01 14:17:13 -0700 |
commit | 6fcf9393c31a51cef688b591de73817c5988c405 (patch) | |
tree | 55bf6c09a73c90fe31227d78464a4dc11d191221 | |
parent | 7fb0b210e88bcbdb71d2cb0022c35b2cc3810327 (diff) | |
download | zsh-6fcf9393c31a51cef688b591de73817c5988c405.tar.gz zsh-6fcf9393c31a51cef688b591de73817c5988c405.tar.bz2 zsh-6fcf9393c31a51cef688b591de73817c5988c405.zip |
merge steeef.zsh-theme from master (removed submodule check)
-rw-r--r-- | themes/steeef.zsh-theme | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/steeef.zsh-theme b/themes/steeef.zsh-theme index abb8f2994..a43192743 100644 --- a/themes/steeef.zsh-theme +++ b/themes/steeef.zsh-theme @@ -66,7 +66,7 @@ add-zsh-hook chpwd steeef_chpwd function steeef_precmd { # check for untracked files or updated submodules, since vcs_info doesn't - if [[ -n $(git ls-files --other --exclude-standard 2> /dev/null) || -n $(git ls-files -m --exclude-standard 2> /dev/null) ]]; then + if [[ -n $(git ls-files --other --exclude-standard 2> /dev/null) ]]; then PR_GIT_UPDATE=1 FMT_BRANCH="(%{$fg[magenta]%}%b%u%c%{$fg[red]%}●${PR_RST})" else |