From mboxrd@z Thu Jan 1 00:00:00 1970 From: Juan Pechiar Subject: Re: feature request for org-store-log-note Date: Tue, 27 Sep 2011 23:28:06 -0300 Message-ID: <20110928022806.GA15758@soloJazz.com> References: <8762kdcwvk.fsf@hecubus.retroj.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([140.186.70.92]:47318) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R8jsf-00086C-2H for emacs-orgmode@gnu.org; Tue, 27 Sep 2011 22:28:18 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R8jse-0000UB-1F for emacs-orgmode@gnu.org; Tue, 27 Sep 2011 22:28:17 -0400 Received: from oproxy7-pub.bluehost.com ([67.222.55.9]:50107) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1R8jsd-0000U7-KY for emacs-orgmode@gnu.org; Tue, 27 Sep 2011 22:28:16 -0400 Content-Disposition: inline In-Reply-To: <8762kdcwvk.fsf@hecubus.retroj.net> 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 J Foerch Cc: emacs-orgmode@gnu.org Hi John, Please check the variable org-log-states-order-reversed Documentation: Non-nil means the latest state note will be directly after heading. When nil, the state change notes will be ordered according to time. Regards, .j. On Tue, Sep 27, 2011 at 08:51:27PM -0400, John J Foerch wrote: > I use org to manage TODO lists in which I want to keep time stamps for > the creation of an item, and for each state change. To be as clear as > possible, I'll just paste the portion of my config that affects how > TODOs work: > > (setq org-treat-insert-todo-heading-as-state-change t > org-log-into-drawer t > org-log-done nil) > > (setq org-todo-keywords > '((sequence "TODO(t!)" "|" "DONE(d!)" "CANCELLED(c!)"))) > > (setcdr (assq 'state org-log-note-headings) > "State -> %s %t") > > This logs each state change (including creation) into the LOGBOOK > drawer. It's great. My feature request concerns the order in which the > notes are logged. Each new note is inserted at the top of the drawer. > I would prefer it if they could be logged to the end of the drawer, so > that one could read all of the state changes in chronological order from > the top down.