From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: org-mode remember visibility Date: Wed, 10 Sep 2008 09:14:47 +0200 Message-ID: <0C32B53B-2249-490A-B451-E048BFA52C1D@uva.nl> References: Mime-Version: 1.0 (Apple Message framework v926) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KdJv1-0008V4-NJ for emacs-orgmode@gnu.org; Wed, 10 Sep 2008 03:15:15 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KdJv1-0008Uj-0T for emacs-orgmode@gnu.org; Wed, 10 Sep 2008 03:15:15 -0400 Received: from [199.232.76.173] (port=51237 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KdJv0-0008Ug-RE for emacs-orgmode@gnu.org; Wed, 10 Sep 2008 03:15:14 -0400 Received: from mx20.gnu.org ([199.232.41.8]:38820) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1KdJv0-00080y-Ai for emacs-orgmode@gnu.org; Wed, 10 Sep 2008 03:15:14 -0400 Received: from wr-out-0506.google.com ([64.233.184.239]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KdJuz-0004A4-NE for emacs-orgmode@gnu.org; Wed, 10 Sep 2008 03:15:13 -0400 Received: by wr-out-0506.google.com with SMTP id c30so2444755wra.14 for ; Wed, 10 Sep 2008 00:15:13 -0700 (PDT) In-Reply-To: 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: r.thiel@uni-jena.de Cc: emacs-orgmode@gnu.org On Sep 8, 2008, at 3:30 PM, Rainer Thiel wrote: > I like the interaction of org-mode and remember, and I have defined > the following templates with minimal and trivial adaptations of what > is suggested in the manual: > > (setq org-remember-templates > '(("Todo" ?t "* TODO %?\n %i\n %a" org-default-notes-file > "Aufgaben") > ("Notiz" ?n "* %U %?\n\n %i\n %a" org-default-notes-file > "Notizen") > ("Besprechung" ?b "* %^{Besprechung mit} %U %?\n\n %i\n" > org-default-notes-file "Besprechungen") > ("Idee" ?i "* %^{Title}\n %i\n %a" > org-default-notes-file "Ideen"))) > > This works fine. What I find confusing though, is that initially the > Text of the newly created entry (including text inserted from the > active region) is invisible. Is there are good reason for this > default behaviour, and is there a way to change it, viz. to start the > entry as visible? The escape sequences are filled in one by one, in the sequence as they appear in the template. If you have an interactive prompt near the beginning, you first have to put in the information before template creation can proceed. Is this what you mean by "invisible"? - Carsten