From mboxrd@z Thu Jan 1 00:00:00 1970 From: Myles English Subject: Re: Agenda capture possible to specific headlines? Date: Wed, 07 Jan 2015 10:03:36 +0000 Message-ID: <871tn6uce1.fsf@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44972) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y8rGO-00016B-BZ for emacs-orgmode@gnu.org; Wed, 07 Jan 2015 09:07:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y8rGK-00052A-C7 for emacs-orgmode@gnu.org; Wed, 07 Jan 2015 09:07:08 -0500 Received: from mail-wi0-x22c.google.com ([2a00:1450:400c:c05::22c]:63334) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y8rGK-00051U-4R for emacs-orgmode@gnu.org; Wed, 07 Jan 2015 09:07:04 -0500 Received: by mail-wi0-f172.google.com with SMTP id n3so7543336wiv.11 for ; Wed, 07 Jan 2015 06:07:02 -0800 (PST) In-reply-to: List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: Jay Iyer Cc: emacs-orgmode@gnu.org 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