From 0249856e518b1a21aa33b4b5ee18b3356c177225 Mon Sep 17 00:00:00 2001 From: Daniel Borchmann Date: Wed, 26 Oct 2022 20:52:11 +0200 Subject: [PATCH] Record more information when changing state At least add the times, that almost never hurts. --- init.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/init.el b/init.el index 2cb2e39..1c4d74c 100644 --- a/init.el +++ b/init.el @@ -822,9 +822,9 @@ ;; Keywords and Tags (setq org-todo-keywords - '((sequence "TODO(t)" "CONT(n!)" "REFINE(f!)" "|" "DONE(d@)" "CANC(c@/!)" "MRGD(m@)") - (sequence "GOTO(g)" "ATTN(a)" "|" "DONE(d@)") - (sequence "READ(r)" "CONT(n!)" "|" "DONE(d@)") + '((sequence "TODO(t)" "CONT(n!)" "REFINE(f!)" "|" "DONE(d@/!)" "CANC(c@/!)" "MRGD(m@/!)") + (sequence "GOTO(g)" "ATTN(a!)" "|" "DONE(d@/!)") + (sequence "READ(r)" "CONT(n!)" "|" "DONE(d@/!)") (sequence "DELG(e@/!)" "WAIT(w@/!)" "HOLD(h@/!)" "|" "CANC(c@/!)"))