diff options
| author | Craig Jennings <c@cjennings.net> | 2025-05-23 15:07:37 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2025-05-23 15:07:37 -0500 |
| commit | 271acf16ae0beabb39d2d03e85ee9a2049ee7203 (patch) | |
| tree | 5443b86593e9b0fe9fcb12d4d507c1f6ad501c4d | |
| parent | a754a734514312ee97665ec9bf603ff83cf40ac6 (diff) | |
| download | dotemacs-271acf16ae0beabb39d2d03e85ee9a2049ee7203.tar.gz dotemacs-271acf16ae0beabb39d2d03e85ee9a2049ee7203.zip | |
avoid task state information except for done states
| -rw-r--r-- | modules/org-config.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/org-config.el b/modules/org-config.el index d449c49b..3faea70a 100644 --- a/modules/org-config.el +++ b/modules/org-config.el @@ -99,7 +99,7 @@ org-archive-subtree-default are placed.") "All org-todo related settings are grouped and set in this function." ;; logging task creation, task start, and task resolved states - (setq org-todo-keywords '((sequence "TODO(t!)" "PROJECT(p)" "DOING(i!)" + (setq org-todo-keywords '((sequence "TODO(t)" "PROJECT(p)" "DOING(i)" "WAITING(w)" "VERIFY(v)" "STALLED(s)" "DELEGATED(x)" "|" "FAILED(f!)" "DONE(d!)" "CANCELLED(c!)"))) |
