1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-04-19 08:34:00 +02:00

unposted: vcs_info-examples: Fix condition

This commit is contained in:
Mikael Magnusson 2020-12-05 19:23:17 +01:00
parent 74f4cbfcb6
commit 42b5371d70

View File

@ -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~%# "