Show in the journal page DOING tasks from anywhere

Is there a way to automatically show the DOING tasks from other pages at the bottom of the journal page? Currently, only the DOING that are in the journal page are displayed, like in the picture.

1 Like

Try going to file config.edn, find entry :title "🔨 NOW" and remove the lines below:

            [?p :block/journal? true]
            [?p :block/journal-day ?d]
            [(>= ?d ?start)]
            [(<= ?d ?today)]]

except of the very last character, the last closing square bracket ] . This needs to stay there.

1 Like

I can delete

[?p :block/journal? true]
[?p :block/journal-day ?d]

but every time I delete

[(>= ?d ?start)]
[(<= ?d ?today)]]

and I close the file, when I open the file again those two lines are back for some reason.

PS. by deleting the first two lines, the DOING at the bottom of the journal page disappears completely

You are right. Should not remove the very last character, the last closing square bracket ] . I have updated my answer.

When this happens, it means that the query contains errors, like with the missing closing bracket.

1 Like