In addition to #36, I'd love to have a way to list all tasks from all lists.
E.g. When no --tasklist is provided, it will loop over all taskslists and for each one list the tasks.
With some shell scripting, I can do this, but it's not very clean:
for list in $(gtasks tasklists view | cut -c5-); do
gtasks tasks view --tasklist $list
done
This does not allow for sorting, filtering etc. With qsv, I would manage.
The output could include a column "Tasklist" so that we can sort/filter/etc on that too.
Sorting should probably work over all taskslists.
In addition to #36, I'd love to have a way to list all tasks from all lists.
E.g. When no
--tasklistis provided, it will loop over all taskslists and for each one list the tasks.With some shell scripting, I can do this, but it's not very clean:
This does not allow for sorting, filtering etc. With qsv, I would manage.
The output could include a column "Tasklist" so that we can sort/filter/etc on that too.
Sorting should probably work over all taskslists.