Change default org-ql query for db/org-backlinks to `(not (done))`

Using `(todo)` (the previous default) excluded NOTEs and TOPICs (among others)
which I am usually interested in.
This commit is contained in:
Daniel - 2022-06-30 16:51:55 +02:00
parent 09ca55efeb
commit 3b13921097
Signed by: dbo
GPG Key ID: 784AA8DF0CCDF625
1 changed files with 1 additions and 1 deletions

View File

@ -1129,7 +1129,7 @@ PARAMS may contain the following values:
(interactive)
(org-create-dblock
(list :name "db/org-backlinks"
:org-ql-match '(todo)
:org-ql-match '(not (done))
:parent-depth nil
:archives nil))
(org-update-dblock))