From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adam Spiers Subject: Re: Org-mode version 5.17 Date: Sun, 30 Dec 2007 11:22:59 +0000 Message-ID: <20071230112259.GB20947@atlantic.linksys.moosehall> References: Reply-To: Adam Spiers 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 1J8wFy-0008Fh-M2 for emacs-orgmode@gnu.org; Sun, 30 Dec 2007 06:23:02 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J8wFx-0008FL-Gf for emacs-orgmode@gnu.org; Sun, 30 Dec 2007 06:23:01 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J8wFx-0008FI-CT for emacs-orgmode@gnu.org; Sun, 30 Dec 2007 06:23:01 -0500 Received: from mail.beimborn.com ([70.84.38.100]) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1J8wFx-0004yj-5R for emacs-orgmode@gnu.org; Sun, 30 Dec 2007 06:23:01 -0500 Received: from mail.beimborn.com (localhost.localdomain [127.0.0.1]) by mail.beimborn.com (8.12.11.20060308/8.12.8) with ESMTP id lBUBMx7U026947 for ; Sun, 30 Dec 2007 05:22:59 -0600 Received: from localhost (localhost [[UNIX: localhost]]) by mail.beimborn.com (8.12.11.20060308/8.12.11/Submit) id lBUBMxRP026942 for emacs-orgmode@gnu.org; Sun, 30 Dec 2007 11:22:59 GMT Content-Disposition: inline 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: emacs-orgmode@gnu.org On Thu, Dec 20, 2007 at 07:28:42AM +0100, Carsten Dominik wrote: > Changes in Version 5.17 > ~~~~~~~~~~~~~~~~~~~~~~~ [snipped] > - When a remember template contains the string `%!', the note > will be stored immediately after all template parts have > been filled in, so you don't even have to press `C-c > C-c'. The was a proposal by Adam Spiers. Thanks, works great! Looks like you forgot to add the help text to the defcustom again though ;-) > - The new command `org-remember-goto-last-stored' will jump > to the location of the remember note stored most recently. > If you have `org-remember' on a key like `C-c r', then you > can go to the location with a double prefix arg: `C-u C-u > C-c r'. This was a proposal by Rainer Stengele. This is also great - it would be *even* better if we also had the per-template option of automatically jumping there. This could be implemented in exactly the same way as you did the "don't prompt me" %! option above. The justification is that each remember template defines a mini-workflow, and some will then require immediate editing of the new item in its final context. Additionally it would provide a workaround to the problems described here: http://thread.gmane.org/gmane.emacs.orgmode/4692 since if the new item is immediately moved to its final context, keywords/tags/priorities etc. can be set there rather than from within the *Remember* buffer. > - Template items that are being prompted for can now specify > a default value and a completion table. Furthermore, > previous inputs at a specific prompt are captured in a > history variable. For example: > > %^{Author|Roald Dahl|Thomas Mann|Larry Niven} > > will prompt for an author name. Pressing RET without > typing anything will select "Roald Dahl". Completion will > give you any of the three names. And a history will be > kept, so you can use the arrow keys to get to previous > input. The history is tied to the prompt. By using the > same prompt in different templates, you can build a history > across templates. The ideas for this came from proposals > by Bastien and Adam. This is really cool, however there is one problem: SPC is now bound to minibuffer-complete-word in this context.