From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: problem with org-capture Date: Tue, 01 Dec 2015 14:51:57 -0600 Message-ID: <87r3j5kibs.fsf@fastmail.fm> References: <87d1uq7f6e.fsf@ucl.ac.uk> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48274) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a3ru6-0004pZ-N6 for emacs-orgmode@gnu.org; Tue, 01 Dec 2015 15:52:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a3ru3-0004Oq-VJ for emacs-orgmode@gnu.org; Tue, 01 Dec 2015 15:52:02 -0500 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:52265) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a3ru3-0004OV-Os for emacs-orgmode@gnu.org; Tue, 01 Dec 2015 15:51:59 -0500 Received: from archdesk (wcnat-96-123.wheaton.edu [209.147.96.123]) by mail.messagingengine.com (Postfix) with ESMTPA id B334CC016F8 for ; Tue, 1 Dec 2015 15:51:57 -0500 (EST) In-Reply-To: <87d1uq7f6e.fsf@ucl.ac.uk> (Eric S. Fraga's message of "Tue, 1 Dec 2015 08:20:57 +0000") 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 Eric S Fraga writes: > Hello again, > > at the risk of again raising an issue that is actually my fault :-(, I > am having a problem with org-capture. I have been using the same > templates for yonks but, all of a sudden, my templates don't work. For > instance, > > #+begin_src emacs-lisp > (setq org-capture-templates > '(("t" "todo" entry (file+datetree "~/s/notes/tasks.org") > "* TODO %^{Task} %^G\nSCHEDULED: %t\n%i%?"))) > #+end_src > > I do not get prompted for the task nor asked for tags. > > I do see that there have been changes recently to org-capture and a few > emails flying by regarding recursive captures but I didn't think they > applied to my use cases... I could be wrong. > > Any pointers to what I need to change to get things working again would > be most welcome! I can confirm this bug. None of the prompt shortcuts work in capture templates. For instance, the following capture template... (setq org-capture-templates '(("a" "Appointment" entry (file "~/org/inbox.org") "* %^{Appt}\n %^t%?\n %U\n %i"))) ...simply inserts the following in a buffer without any prompts or expansion... * %^{Appt} %^t [2015-12-01 Tue 14:51] The problematic commit is the one having to do with recursive todos: bd3a2cbf2f69d4de5ad7d41893bf418e91c23fb2 Best, Matt