From cd5f3938131a0238aaaf4953708bf69b1806bfac Mon Sep 17 00:00:00 2001 From: Random936 Date: Thu, 1 Feb 2024 17:38:13 -0800 Subject: [PATCH] Configured org-clock-in to switch to in progress state --- .emacs.d/org.org | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.emacs.d/org.org b/.emacs.d/org.org index c32e7d1..78d53b3 100644 --- a/.emacs.d/org.org +++ b/.emacs.d/org.org @@ -161,9 +161,17 @@ Adds custom states to tasks such as ~IN PROGRESS~, ~CANCELLED~, etc. I've also a #+begin_src emacs-lisp (setq org-todo-keyword-faces '(("IN PROGRESS" . (:foreground "orange" :weight bold)) ("WAITING" . (:foreground "yellow" :weight bold)))) - -(setq org-todo-keywords '((sequence "TODO(t)" "IN PROGRESS(i)" "WAITING(w)" "|" "DONE(d)" "CANCELLED(c)"))) +(setq org-todo-keywords + '((sequence + "TODO(t)" + "IN PROGRESS(i)" + "WAITING(w)" + "|" + "DONE(d)" + "CANCELLED(c)"))) + +(setq org-clock-in-switch-to-state "IN PROGRESS") #+end_src ** Refresh Checkboxes