From mboxrd@z Thu Jan 1 00:00:00 1970 From: Trance Diviner Subject: inserting notes at level 1 with org-remember Date: Thu, 25 Feb 2010 09:18:40 -0800 Message-ID: Mime-Version: 1.0 (Apple Message framework v1077) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NkhNY-0001yK-Ec for emacs-orgmode@gnu.org; Thu, 25 Feb 2010 12:20:00 -0500 Received: from [140.186.70.92] (port=49783 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NkhNX-0001y9-M3 for emacs-orgmode@gnu.org; Thu, 25 Feb 2010 12:20:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NkhNW-00036Z-VU for emacs-orgmode@gnu.org; Thu, 25 Feb 2010 12:19:59 -0500 Received: from mail-fx0-f222.google.com ([209.85.220.222]:43804) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NkhNW-00036P-R7 for emacs-orgmode@gnu.org; Thu, 25 Feb 2010 12:19:58 -0500 Received: by fxm22 with SMTP id 22so6539245fxm.26 for ; Thu, 25 Feb 2010 09:19:56 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hello! The documentation for org-remember-templates says the following: """ An optional fifth element can specify the headline in that file that should be offered first when the user is asked to file the entry. The default headline is given in the variable `org-remember-default-headline'. When this element is `top' or `bottom', the note will be placed as a level-1 entry at the beginning or end of the file, respectively. """ But I find that org-remember always creates notes as a level-2 entry. For example, starting with an empty "example.org" file and the following configuration: (setq org-remember-templates '(("Note" ?n "* %u %?\n\n%i\n%a" "example.org" top))) Invoking org-remember twice results in these contents: ** [2010-02-25 Thu] note two ** [2010-02-25 Thu] note one What I expected was: * [2010-02-25 Thu] note two * [2010-02-25 Thu] note one Am I doing it wrong? Or is this a bug in org-remember? If a bug, is there a workaround I could apply to my configuration? Kind thanks for your time, -- Trance