From 0c0009b65521ea4b9c74765006b2c136ac59602a 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. Also indent all other agenda views, for consistency. --- init.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/init.el b/init.el index 88a541d..d103fee 100644 --- a/init.el +++ b/init.el @@ -1168,10 +1168,10 @@ "") org-agenda-prefix-format - '((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) ")) + '((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) ")) org-agenda-custom-commands `(("A" "Main Agenda"