- Added feature #710, which adds an attribute modifier prefix to return the
  complement of a filtered set (thanks to Dan White).
- Added missing description to the 'help' command.

Signed-off-by: Paul Beckingham <paul@beckingham.net>
This commit is contained in:
Dan White 2011-03-19 00:55:57 -04:00 committed by Paul Beckingham
parent 17f97651a3
commit 4b71fa73f8
10 changed files with 241 additions and 11 deletions

View file

@ -424,7 +424,8 @@ id1 and id2 should be completed before this task. Consequently, this task will
then show up on the 'blocked' report.
.SH ATTRIBUTE MODIFIERS
Attribute modifiers improve filters. Supported modifiers are:
Attribute modifiers improve filters. Prefixing any modifier with '~' returns
the complementary set of items. Supported modifiers are:
.RS
.B before (synonyms under, below)
@ -517,7 +518,11 @@ modifier matches against the left, or beginning of an attribute, such that:
task list project.startswith:H
task list project:H
are equivalent and will match any project starting with 'H'.
are equivalent and will match any project starting with 'H'. Matching all
projects not starting with 'H' is done with:
task list project.~startswith:H
task list project.not:H
The
.I endswith