From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: Re: Default Date for Scheduling in Remember Buffer Date: Tue, 22 Sep 2009 11:36:59 -0400 Message-ID: References: <1253613510.3385.9.camel@gravor> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Mq7QS-0001lQ-Uc for emacs-orgmode@gnu.org; Tue, 22 Sep 2009 11:37:08 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Mq7QO-0001kj-9J for emacs-orgmode@gnu.org; Tue, 22 Sep 2009 11:37:08 -0400 Received: from [199.232.76.173] (port=42084 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mq7QO-0001kg-3W for emacs-orgmode@gnu.org; Tue, 22 Sep 2009 11:37:04 -0400 Received: from out1.smtp.messagingengine.com ([66.111.4.25]:38008) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Mq7QN-00038p-Qg for emacs-orgmode@gnu.org; Tue, 22 Sep 2009 11:37:03 -0400 In-Reply-To: <1253613510.3385.9.camel@gravor> (Philipp Schaefer's message of "Tue, 22 Sep 2009 11:58:30 +0200") 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: Philipp Schaefer Cc: emacs-orgmode@gnu.org Philipp Schaefer writes: > I just tried the functionality described in the manual in the section > http://orgmode.org/org.html#Setting-up-Remember-for-Org , according to > which the key combination 'k r' leads to timestamps defaulting to the > day on which the pointer was when 'k r' was invoked. Now is it somehow > possible to alter the behaviour of %t to not only be converted to a > simple timestamp but instead to a deadline- or scheduled-timestamp? Here's the simplest way to do it: (setq org-remember-templates '((?s "* TODO %^{Title}\n SCHEDULED: %t\n %a\n %i") (?d "* TODO %^{Title}\n DEADLINE: %t\n %a\n %i") ;; ... other templates here )) - Matt