Docs: Document that comma-separated lists of IDs/UUIDs are not supported

This commit is contained in:
Tomas Babej 2015-08-06 20:37:27 -04:00 committed by Paul Beckingham
parent cfb0b99dbe
commit 6f53f40ad5
2 changed files with 8 additions and 6 deletions

View file

@ -146,6 +146,8 @@
- The 'commands' command shows the supported commands, with additional details - The 'commands' command shows the supported commands, with additional details
that determine some of their behavior. that determine some of their behavior.
- Improved feedback for tasks that do not have ID (thanks to Tomas Babej). - Improved feedback for tasks that do not have ID (thanks to Tomas Babej).
- Comma-separated lists of UUIDs can no longer be used as a filter. Use the
space character instead.
------ current release --------------------------- ------ current release ---------------------------

View file

@ -67,12 +67,12 @@ The parentheses isolate the logical term from any default command filter or
implicit report filter which would be combined with an implicit 'and'. implicit report filter which would be combined with an implicit 'and'.
A filter may target specific tasks using ID or UUID numbers. To specify A filter may target specific tasks using ID or UUID numbers. To specify
multiple tasks use one of these forms (comma or space-separated list of ID multiple tasks use one of these forms (space-separated list of ID numbers,
numbers, UUID numbers or ID ranges): UUID numbers or ID ranges):
task 1,2,3 delete task 1 2 3 delete
task 1-3 info task 1-3 info
task 1,2-5,19 modify pri:H task 1 2-5 19 modify pri:H
task 4-7 ebeeab00-ccf8-464b-8b58-f7f2d606edfb info task 4-7 ebeeab00-ccf8-464b-8b58-f7f2d606edfb info
.SH MODIFICATIONS .SH MODIFICATIONS
@ -216,8 +216,8 @@ an alias to 'history.monthly'.
.TP .TP
.B task <filter> ids .B task <filter> ids
Applies the filter then extracts only the task IDs and presents them as Applies the filter then extracts only the task IDs and presents them as
a range, for example: 1-4,12. This is useful as input to a task command, a space-separated list. This is useful as input to a task command, to achieve
to achieve this: this:
task $(task project:Home ids) modify priority:H task $(task project:Home ids) modify priority:H