How can I change the todo status before an item is clocked out. I was
hoping for something like the following


    (add-hook 'org-before-todo-state-change-hook
           'dericbytes/org-clock-out-change-status-to-waiting)


   (defun dericbytes/org-clock-out-change-status-to-waiting ()
         (save-excursion
         (goto-char org-clock-marker)
         (org-todo "WAITING")))


_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to