From 49a5117100abde8cd7d59c45a5c2dd7a6907bc85 Mon Sep 17 00:00:00 2001 From: rearman Date: Thu, 19 Mar 2026 08:10:00 -0400 Subject: [PATCH] Split keywords into separate sequences --- re/re-org.el | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/re/re-org.el b/re/re-org.el index 28d8861..5777139 100644 --- a/re/re-org.el +++ b/re/re-org.el @@ -59,9 +59,10 @@ org-refile-use-outline-path 'file org-refile-allow-creating-parent-nodes 'confirm) -(setq org-todo-keywords '((sequence "TODO(t)" "WAITING(w@)" "UNDERTAKEN(u)" "MEETING(m)" - "|" - "DONE(d)" "BELAYED(b@)" "GIVEN(g@)" "MET(M)"))) +(setq org-todo-keywords '((sequence "UNDERTAKEN(u)" "|") + (sequence "TODO(t)" "WAITING(w@)" "|") + (sequence "|" "DONE(d)" "BELAYED(b@)" "GIVEN(g@)") + (sequence "MEETING(m)" "|" "MET(M)"))) (setq org-tag-alist '((:startgroup . nil) ; contexts ("buy" . ?b) -- 2.39.5