The Complete Computing Environment

Capturing Notes into Clocked Task

LifeTechEmacsTopicsArcology
(defun cce/org-capture-to-clock ()
  (interactive)
  (let ((org-capture-templates `(("C" "clock capture" item
                                  (clock)
                                  "%U %?"
                                  :unnarrowed t))))
    (org-capture nil "C")))

(bind-keys :map org-roam-prefix-map
  ("cc" . cce/org-capture-to-clock))

This is useful in thinking about Time Tracking, about Project Management in Org Mode … It's useful to just hit SPC r cc and note in my clocked task. It also encourages me to time better.