Skip to content

Commit

Permalink
Elaborate on symbols and expressions and document the minus operator.
Browse files Browse the repository at this point in the history
  • Loading branch information
gijsbers committed Jul 24, 2024
1 parent 92961de commit 8f291a1
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions man/icesh.pod
Original file line number Diff line number Diff line change
Expand Up @@ -854,12 +854,19 @@ Some of the window actions require one or two I<EXPRESSION> arguments.

=over

=item B<EXPRESSION> ::= I<SYMBOL> | I<EXPRESSION> { C<+> | C<|> }
=item B<EXPRESSION> ::= I<SYMBOL> | I<EXPRESSION> { C<+> | C<|> | C<-> }
I<SYMBOL>

=back

Each I<SYMBOL> may be from one of the following applicable domains:
This says that an expression is either a I<SYMBOL> or an expression
which is combined with an operator to a I<SYMBOL>. In other words,
an expression is a sequence of symbols, which are combined using
operators, where an operator may be a plus, a vertical bar or a minus.

Each I<SYMBOL> may be either a number or a named symbol from one of the
following applicable domains, depending upon the context in which it is
used:

=over

Expand Down

0 comments on commit 8f291a1

Please sign in to comment.