Configured org-clock-in to switch to in progress state

This commit is contained in:
Random936 2024-02-01 17:38:13 -08:00
parent 436e06326f
commit cd5f393813

View File

@ -161,9 +161,17 @@ Adds custom states to tasks such as ~IN PROGRESS~, ~CANCELLED~, etc. I've also a
#+begin_src emacs-lisp #+begin_src emacs-lisp
(setq org-todo-keyword-faces '(("IN PROGRESS" . (:foreground "orange" :weight bold)) (setq org-todo-keyword-faces '(("IN PROGRESS" . (:foreground "orange" :weight bold))
("WAITING" . (:foreground "yellow" :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 #+end_src
** Refresh Checkboxes ** Refresh Checkboxes