From 42b5371d7013ae581ee6095c5922ed8588446a96 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Sat, 5 Dec 2020 19:23:17 +0100 Subject: unposted: vcs_info-examples: Fix condition --- Misc/vcs_info-examples | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Misc/vcs_info-examples b/Misc/vcs_info-examples index 6cf87f5f8..94b8a7b5e 100644 --- a/Misc/vcs_info-examples +++ b/Misc/vcs_info-examples @@ -55,7 +55,7 @@ precmd() { # is (as with the other examples above too) just an example of a very # basic single-line prompt. See "man zshmisc" for details on how to # make this less readable. :-) - if [[ -n ${vcs_info_msg_0_} ]]; then + if [[ -z ${vcs_info_msg_0_} ]]; then # Oh hey, nothing from vcs_info, so we got more space. # Let's print a longer part of $PWD... PS1="%5~%# " -- cgit 1.4.1