From mboxrd@z Thu Jan 1 00:00:00 1970 From: jenia.ivlev@gmail.com (jenia.ivlev) Subject: orgmode capture template how to add entry under org header Date: Sat, 09 Aug 2014 20:07:42 -0400 Message-ID: <87ppg9w6k1.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:46244) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XGGn2-0005YB-6w for emacs-orgmode@gnu.org; Sat, 09 Aug 2014 20:15:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XGGmv-0008B5-WB for emacs-orgmode@gnu.org; Sat, 09 Aug 2014 20:15:12 -0400 Received: from plane.gmane.org ([80.91.229.3]:40687) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XGGmv-00088b-Pn for emacs-orgmode@gnu.org; Sat, 09 Aug 2014 20:15:05 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XGGmu-0006I8-OA for emacs-orgmode@gnu.org; Sun, 10 Aug 2014 02:15:04 +0200 Received: from modemcable112.235-178-173.mc.videotron.ca ([173.178.235.112]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 10 Aug 2014 02:15:04 +0200 Received: from jenia.ivlev by modemcable112.235-178-173.mc.videotron.ca with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 10 Aug 2014 02:15:04 +0200 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: emacs-orgmode@gnu.org Hello: I added a custom template for the capture-mode: The problem is that the default "Tasks" template is not there anymore. So I tried to add this: ("t" "Tasks" entry (file "~/Documents/org/notes.org")) Now, when I press `M-x org-capture`, the "Tasks" option appears in the template options list. The default behaviour for the default Tasks template is to add the new entries under the "* Tasks" headline. How do I achieve that same feature? How to add all new entries under a specific header in the .org file? Thanks in advance for your kind help and time. Jenia P.S. This is how I add the custom template to the org-capture templates list: (setq org-capture-templates '( ("c" "Class" entry (file "~/Documents/org/class.txt") #'org-capture-class) ("n" "Exercise session" entry (file "~/Documents/org/notes.org")) ("t" "Tasks" entry (file "~/Documents/org/notes.org")) ))