From what you have shared:
- Your example task is a
TODO
on today’s journal. - Therefore it doesn’t fit in your current default queries, because they look for respectively:
- “NOW” query for either
NOW
orDOING
, not forTODO
- notice line
[(contains? #{"NOW" "DOING"} ?marker)]
- to include
TODO
tasks, add"TODO"
(separated by space) inside the curly braces
- notice line
- “LATER” query for
LATER
, not forTODO
- notice line
[(contains? #{"LATER"} ?marker)]
- to include
TODO
tasks, add"TODO"
(separated by space) inside the curly braces
- notice line
- “NEXT” query for
TODO
, but only after today- notice line
[(> ?d ?start)]
- to include tasks of today, add
=
to make the line[(>= ?d ?start)]
- notice line
- “NOW” query for either
- Don’t make all of the above changes, but only one that fits your specific needs.