commit 9098366e24be87ce23dd1e7c705f1f7f976f1847
parent 33b7f501a33598fd38bc1bfdeacb27eac755bb91
Author: Alex Balgavy <alex@balgavy.eu>
Date: Fri, 20 May 2022 10:52:30 +0200
emacs: org remove someday, add started
Don't need a "someday" keyword, there's a someday file. But I want to
see what's in progress.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/emacs/config.org b/emacs/config.org
@@ -491,11 +491,11 @@ Apart from the logging-on-done configured [[*Logging][below]], I also want to lo
In ~org-todo-keywords~, ~@~ means note+timestamp, ~!~ means timestamp, ~@/!~ means note+timestamp on state entry and timestamp on leave.
#+begin_src emacs-lisp
- (setq org-todo-keywords '((sequence "TODO(t)" "NEXT(n)" "WAITING(w@)" "SOMEDAY(s)" "|" "DONE(d)" "CANCELLED(c)"))
+ (setq org-todo-keywords '((sequence "TODO(t)" "NEXT(n)" "WAITING(w@)" "STARTED(s)" "|" "DONE(d)" "CANCELLED(c)"))
org-todo-keyword-faces '(("TODO" . org-todo)
("NEXT" . org-todo)
("WAITING" . org-todo)
- ("SOMEDAY" . org-todo)
+ ("STARTED" . org-todo)
("DONE" . org-done)
("CANCELLED" . org-done)))
#+end_src