From 39a92a3e80c1ad87f26dd2a2fac2d99e328577eb Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Mon, 17 Jul 2023 18:15:22 +0200 Subject: [PATCH] Add leading space in org agenda lines This is required by the regular expression in `org-agenda-show-clocking-issues`, without this space, no consistency checking is done. --- init.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.el b/init.el index 88a541d..0db984e 100644 --- a/init.el +++ b/init.el @@ -1168,7 +1168,7 @@ "") org-agenda-prefix-format - '((agenda . "%11s%?-12t%-4(db/org-remaining-effort-of-current-item) ") + '((agenda . " %11s%?-12t%-4(db/org-remaining-effort-of-current-item) ") (todo . "%-8c%-4(db/org-remaining-effort-of-current-item) ") (tags . "%-8c%-4(db/org-remaining-effort-of-current-item) ") (search . "%-8c%-4(db/org-remaining-effort-of-current-item) "))