diff options
author | Marc Cornellà <marc.cornella@live.com> | 2020-12-10 20:45:22 +0100 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2020-12-10 20:48:40 +0100 |
commit | 28265812f8fb923788d74409cef3e5635793b38e (patch) | |
tree | a589276afbf829b5366fb98477594aa868c3921d /lib | |
parent | 2f39c68ab0157b55413de74e579d1787f26e58b6 (diff) | |
download | zsh-28265812f8fb923788d74409cef3e5635793b38e.tar.gz zsh-28265812f8fb923788d74409cef3e5635793b38e.tar.bz2 zsh-28265812f8fb923788d74409cef3e5635793b38e.zip |
chore!: notify breaking change in `git_prompt_info`
BREAKING CHANGE: the git config option to skip running `git_prompt_info` has changed from `oh-my-zsh.hide-status` to `oh-my-zsh.hide-info` (#9188).
Diffstat (limited to 'lib')
-rw-r--r-- | lib/git.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git.zsh b/lib/git.zsh index da8a3e7a7..157c85062 100644 --- a/lib/git.zsh +++ b/lib/git.zsh @@ -21,7 +21,7 @@ function git_prompt_info() { ref=$(__git_prompt_git symbolic-ref --short HEAD 2> /dev/null) \ || ref=$(__git_prompt_git rev-parse --short HEAD 2> /dev/null) \ || return 0 - + # Use global ZSH_THEME_GIT_SHOW_UPSTREAM=1 for including upstream remote info local upstream if (( ${+ZSH_THEME_GIT_SHOW_UPSTREAM} )); then |