[BACK]Return to tmux.1 CVS log [TXT][DIR] Up to [local] / src / usr.bin / tmux

Diff for /src/usr.bin/tmux/tmux.1 between version 1.713 and 1.714

version 1.713, 2020/02/20 07:34:57 version 1.714, 2020/03/11 14:17:55
Line 4107 
Line 4107 
 .Xr fnmatch 3  .Xr fnmatch 3
 or regular expression comparison.  or regular expression comparison.
 The first argument is the pattern and the second the string to compare.  The first argument is the pattern and the second the string to compare.
 An optional third argument specifies flags:  An optional argument specifies flags:
 .Ql r  .Ql r
 means the pattern is a regular expression instead of the default  means the pattern is a regular expression instead of the default
 .Xr fnmatch 3  .Xr fnmatch 3
Line 4133 
Line 4133 
 ignores case.  ignores case.
 For example:  For example:
 .Ql #{C/r:^Start}  .Ql #{C/r:^Start}
   .Pp
   Numeric operators may be performed by prefixing two comma-separated alternatives with an
   .Ql e
   and an operator.
   An optional
   .Ql f
   flag may be given after the operator to use floating point numbers, otherwise integers are used.
   This may be followed by a number giving the number of decimal places to use for the result.
   The available operators are:
   addition
   .Ql + ,
   subtraction
   .Ql - ,
   multiplication
   .Ql * ,
   division
   .Ql / ,
   and modulus
   .Ql m
   or
   .Ql %
   (note that
   .Ql %
   must be escaped as
   .Ql %%
   in formats which are also expanded by
   .Xr strftime 3 ) .
   For example,
   .Ql #{e|*|f|4:5.5,3}
   multiplies 5.5 by 3 for a result with four decimal places and
   .Ql #{e|%%:7,3}
   returns the modulus of 7 and 3.
 .Pp  .Pp
 A limit may be placed on the length of the resultant string by prefixing it  A limit may be placed on the length of the resultant string by prefixing it
 by an  by an

Legend:
Removed from v.1.713  
changed lines
  Added in v.1.714