From mboxrd@z Thu Jan 1 00:00:00 1970 From: John J Foerch Subject: feature request for org-store-log-note Date: Tue, 27 Sep 2011 20:51:27 -0400 Message-ID: <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]:48147) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R8iNI-0007m0-2g for emacs-orgmode@gnu.org; Tue, 27 Sep 2011 20:51:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1R8iNH-0001b4-3i for emacs-orgmode@gnu.org; Tue, 27 Sep 2011 20:51:48 -0400 Received: from lo.gmane.org ([80.91.229.12]:45469) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1R8iNG-0001aw-TF for emacs-orgmode@gnu.org; Tue, 27 Sep 2011 20:51:47 -0400 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1R8iNE-0005fG-FK for emacs-orgmode@gnu.org; Wed, 28 Sep 2011 02:51:44 +0200 Received: from 93.sub-75-219-56.myvzw.com ([75.219.56.93]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 28 Sep 2011 02:51:44 +0200 Received: from jjfoerch by 93.sub-75-219-56.myvzw.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 28 Sep 2011 02:51:44 +0200 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 Hello, 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. Make sense? Thank you, -- John Foerch