From b74137e413a7e90305b25f0f5c709b006d039fdc Mon Sep 17 00:00:00 2001 From: rearman Date: Fri, 17 Feb 2023 16:17:58 -0500 Subject: [PATCH] Put DELEGATED into org Completed keywords Didn't make sense to have DELEGATED be an 'incolplete' state. --- org-setup.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/org-setup.el b/org-setup.el index 4cba3be..ef44485 100644 --- a/org-setup.el +++ b/org-setup.el @@ -14,12 +14,11 @@ Intended for use as an after-save-hook." (lambda () (org-archive-subtree) (setq org-map-continue-from (org-element-property :begin (org-element-at-point)))) - "TODO=\"DONE\"|TODO=\"CANCELLED\"" + "TODO=\"DONE\"|TODO=\"CANCELLED\"|TODO=\"DELEGATED\"" 'file) (save-buffer)) (setq org-M-RET-may-split-line nil - org-startup-folded t org-reverse-note-order t org-use-fast-todo-selection 'expert org-agenda-start-on-weekday nil @@ -34,8 +33,8 @@ Intended for use as an after-save-hook." org-todo-keywords '((sequence "TODO(t@)" "WAITING(w@)" "IN-PROGRESS(i@)" - "DELEGATED(l@)" "APPT(a@)" "|" + "DELEGATED(l@)" "DONE(d@)" "CANCELLED(c@)")) org-capture-templates '(("n" "Note" entry (file+olp org-default-notes-file "Notes") "* %u %?") -- 2.39.5