浏览代码

agnoster: respect git config oh-my-zsh.hide-status (#6362)

Marten Seemann 6 年之前
父节点
当前提交
150a3c9c83
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      themes/agnoster.zsh-theme

+ 3 - 0
themes/agnoster.zsh-theme

@@ -96,6 +96,9 @@ prompt_context() {
 # Git: branch/detached head, dirty status
 prompt_git() {
   (( $+commands[git] )) || return
+  if [[ "$(git config --get oh-my-zsh.hide-status 2>/dev/null)" = 1 ]]; then
+    return
+  fi
   local PL_BRANCH_CHAR
   () {
     local LC_ALL="" LC_CTYPE="en_US.UTF-8"