From 7640e2cbb9da96fd6c51378d6eb56a5b0fc0b929 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 9 Aug 2026 16:20:45 -0400 Subject: [PATCH] [emacs] Fix org-reminders ID collision blocking reminders --- emacs/.config/doom/+org-reminders.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/emacs/.config/doom/+org-reminders.el b/emacs/.config/doom/+org-reminders.el index b5e6515..58cea9a 100644 --- a/emacs/.config/doom/+org-reminders.el +++ b/emacs/.config/doom/+org-reminders.el @@ -127,7 +127,7 @@ Each spec is (ID HEADING FIRE-TIME LABEL SECONDS)." (let ((subtree-end (save-excursion (org-end-of-subtree t t)))) (if (and (org-get-todo-state) (not (org-entry-is-done-p))) (let* ((heading (string-trim (org-get-heading t t t t))) - (id (or (org-entry-get nil "ID" t) + (id (or (org-entry-get nil "ID") (format "%s|%s" file heading))) (rem (org-entry-get nil "REMINDER" t)) (anchor (progn