Hell Jay, Jay Iyer writes:
> Is there a way to capture tasks/notes to a *specific headline* from the > agenda buffer? I use the "k" command to invoke capture templates, and it > would be super helpful/efficient to create additional sub-headlines to a > headline presented in the agenda buffer. You can use the "file+headline" thing like this: (setq org-capture-templates (quote ( ("t" "Groovy tune" entry (file+headline (concat org-directory "/journal.org") "Tunes") "* Tune: %? \n") ;; more templates here ))) I don't know how to choose the target headline interactively however. Myles