From d854cb6a8cb1a5891f6427794e84df528df2f9c4 Mon Sep 17 00:00:00 2001 From: Oscar Santiago <6805462+pastatopf@users.noreply.github.com> Date: Fri, 27 Aug 2021 22:50:32 +0200 Subject: [PATCH] Pull request 1704 (#259) --- book/A-git-in-other-environments/sections/zsh.asc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/A-git-in-other-environments/sections/zsh.asc b/book/A-git-in-other-environments/sections/zsh.asc index 749e7b7a..fa31eab4 100644 --- a/book/A-git-in-other-environments/sections/zsh.asc +++ b/book/A-git-in-other-environments/sections/zsh.asc @@ -28,8 +28,8 @@ autoload -Uz vcs_info precmd_vcs_info() { vcs_info } precmd_functions+=( precmd_vcs_info ) setopt prompt_subst -RPROMPT=\$vcs_info_msg_0_ -# PROMPT=\$vcs_info_msg_0_'%# ' +RPROMPT='${vcs_info_msg_0_}' +# PROMPT='${vcs_info_msg_0_}%# ' zstyle ':vcs_info:git:*' formats '%b' ----