From: rearman Date: Fri, 17 Feb 2023 21:17:58 +0000 (-0500) Subject: Put DELEGATED into org Completed keywords X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=b74137e413a7e90305b25f0f5c709b006d039fdc;p=emacsinit.git Put DELEGATED into org Completed keywords Didn't make sense to have DELEGATED be an 'incolplete' state. --- 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 %?")