1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-11-12 08:50:08 +00:00

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

This commit is contained in:
Marten Seemann 2018-09-24 08:11:57 -04:00 committed by Marc Cornellà
parent 096ef3e6a7
commit 150a3c9c83

View file

@ -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"