From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: problem with org-capture Date: Thu, 03 Dec 2015 11:05:04 -0600 Message-ID: <87io4fv5a2.fsf@fastmail.fm> References: <87d1uq7f6e.fsf@ucl.ac.uk> <87r3j5kdvu.fsf@nicolasgoaziou.fr> <87zixtniiy.fsf@pinto.chemeng.ucl.ac.uk> <87fuzktugf.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47624) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4XJm-00019C-4l for emacs-orgmode@gnu.org; Thu, 03 Dec 2015 12:05:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a4XJg-0000hI-B8 for emacs-orgmode@gnu.org; Thu, 03 Dec 2015 12:05:18 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:53071) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a4XJg-0000h3-4Z for emacs-orgmode@gnu.org; Thu, 03 Dec 2015 12:05:12 -0500 Received: from archbook (c-50-172-132-15.hsd1.il.comcast.net [50.172.132.15]) by mail.messagingengine.com (Postfix) with ESMTPA id 8C5596800D3 for ; Thu, 3 Dec 2015 12:05:10 -0500 (EST) In-Reply-To: <87fuzktugf.fsf@nicolasgoaziou.fr> (Nicolas Goaziou's message of "Wed, 02 Dec 2015 22:24:32 +0100") 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 Nicolas Goaziou writes: > Hello, > > Eric S Fraga writes: > >> However, it only partially fixed. The system does now prompt as it >> should but the mini-buffer input only allows single words. Hitting >> space bar attempts to do completion. I believe the input should be free >> form? > > Fixed (again). Thank you. Thanks Nicolas. One more issue. In the past, non-interactive escapes were expanded when the capture buffer was displayed, which enabled me to see what I had just clipped while entering the interactive data. Now non-interactive escapes are expanded at the end of the capture process. Take the following template: (setq org-capture-templates '(("a" "Appointment" entry (file "~/org/inbox.org") "* %^{Appt}\n %^t%?\n %U\n %a\n\n %i"))) In the past, if I called this from the org-mode website with a region of text selected, I would get a buffer that looked like this before completing the interactive prompts: --8<---------------cut here---------------start------------->8--- *=20 %^t%? [2015-12-03 Thu 11:02] [[http://orgmode.org/][Org mode for Emacs =E2=80=93 Your Life in Plain Tex= t]] Org mode is for keeping notes, maintaining TODO lists, planning projects, and authoring documents with a fast and effective plain-text system. --8<---------------cut here---------------end--------------->8--- After the recent changes, the initial capture buffer looks like this: --8<---------------cut here---------------start------------->8--- *=20 %^t%? %U %a %i --8<---------------cut here---------------end--------------->8--- Thanks, Matt