From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: prompt for deadline in capture template? Date: Fri, 23 Oct 2015 09:49:37 -0500 Message-ID: <874mhh7i7y.fsf@fastmail.fm> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:41059) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zpdf5-0004TJ-G1 for emacs-orgmode@gnu.org; Fri, 23 Oct 2015 10:49:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zpdf0-0002cU-JT for emacs-orgmode@gnu.org; Fri, 23 Oct 2015 10:49:43 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:54430) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zpdf0-0002cB-BM for emacs-orgmode@gnu.org; Fri, 23 Oct 2015 10:49:38 -0400 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id B73D320829 for ; Fri, 23 Oct 2015 10:49:37 -0400 (EDT) In-Reply-To: (John Kitchin's message of "Thu, 22 Oct 2015 12:44:57 -0400") 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: John Kitchin Cc: Xebar Saram , org mode John Kitchin writes: > I just type C-c C-d and add it while the capture is open. > > Xebar Saram writes: > >> Hi guys >> >> i looked in the capture docu but couldn't seem to find it. anyone knows how >> to prompt for deadline in capture template? If you want to do it more pragmatically, you could use something like this (adjust the template as needed). (add-to-list 'org-capture-templates '("d" "Deadline" entry (file "~/org/inbox.org") "* %^{Headline}\n DEADLINE: %^t")) See (info "(org) Template expansion") Matt