From 3b1392109775db82aa3efa7d2eab67a941b0cf98 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Thu, 30 Jun 2022 16:51:55 +0200 Subject: [PATCH] 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. --- site-lisp/db-org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site-lisp/db-org.el b/site-lisp/db-org.el index 91ec699..dba5145 100644 --- a/site-lisp/db-org.el +++ b/site-lisp/db-org.el @@ -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))