From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nathan Neff Subject: org-todo-keywords prompt for note Date: Tue, 1 Sep 2009 10:47:01 -0500 Message-ID: <211769420909010847i1e76123fk9694e2a440b30f71@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MiVZk-0000r0-3i for emacs-orgmode@gnu.org; Tue, 01 Sep 2009 11:47:16 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MiVZj-0000ql-Iq for emacs-orgmode@gnu.org; Tue, 01 Sep 2009 11:47:15 -0400 Received: from [199.232.76.173] (port=41491 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MiVZj-0000qi-DL for emacs-orgmode@gnu.org; Tue, 01 Sep 2009 11:47:15 -0400 Received: from qw-out-1920.google.com ([74.125.92.146]:36055) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MiVZj-0006UJ-3E for emacs-orgmode@gnu.org; Tue, 01 Sep 2009 11:47:15 -0400 Received: by qw-out-1920.google.com with SMTP id 5so81441qwf.24 for ; Tue, 01 Sep 2009 08:47:14 -0700 (PDT) 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 Hello, When marking an item as DONE, I would like to be able to press "n" if I want to leave a note, and press "d" to just mark the item as DONE. I've tried using this trick: (setq org-todo-keywords '( (sequence "TODO(t)" "STARTED(s)" "|" "DONE(n@/@)" "DONE(d!)") I also tried this: (sequence "TODO(t)" "STARTED(s)" "|" "DONE(n@/@)") (sequence "TODO(t)" "STARTED(s)" "|" "DONE(d!)") But neither kludge would prompt me for a note when I press Ctrl-C Ctrl-T n I realize this is picky, because I can manually insert a note before marking an item as DONE. I'm just wondering if anyone knows a way that two shortcuts can be defined for the same TODO state, with one of the shortcuts prompting for a note. Thanks, --Nate