Hi,

* [EMAIL PROTECTED] [02-06-23 12:11:38 +0200] wrote:
 > Right now I have this little blurb in my status_format:
 > %?V?[Limit: (%V)]-?

 > What I'd like to happen is for it to display: [Limit: (All)] if %?V is
 > false.  Is this possible to do?

Yes, the manual explains this, too. The format is:

  %?<char>?<true-string>&<false-string>?

So you need an empty <true-string> and put everything in the
<false-string>:

  %?V?&[Limit: (All)]?

HTH,
Cheers, Rocco

Reply via email to