From mboxrd@z Thu Jan 1 00:00:00 1970 From: Uwe Brauer Subject: org-todo-keywords (add note when switch to DONE) Date: Sat, 06 Jul 2019 11:30:07 +0200 Message-ID: <87lfxb7bog.fsf@mat.ucm.es> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:56404) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hjh1Y-0005pM-T2 for emacs-orgmode@gnu.org; Sat, 06 Jul 2019 05:30:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hjh1X-0006GF-1I for emacs-orgmode@gnu.org; Sat, 06 Jul 2019 05:30:28 -0400 Received: from 195-159-176-226.customer.powertech.no ([195.159.176.226]:54716 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hjh1U-0006Bn-Vp for emacs-orgmode@gnu.org; Sat, 06 Jul 2019 05:30:26 -0400 Received: from list by blaine.gmane.org with local (Exim 4.89) (envelope-from ) id 1hjh1M-000MwF-MN for emacs-orgmode@gnu.org; Sat, 06 Jul 2019 11:30:16 +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" To: emacs-orgmode@gnu.org Hi I am using the following setting (which I found (setq org-todo-keywords '((sequence "TODO(t)" "WAIT(w@/!)" "|" "DONE(d!)" "CANCELED(c@)"))) Which works, almost like charms. The only thing is, when I switch the states, at least optionally, I want to have the possibility to add a note, explaining why I changed the state. Now C-u C-c C-t works for the switch from TODO to wait, but not from wait to done. So I also tried (setq org-todo-keywords ; '((sequence "TODO(t)" "WAIT(w@/!)" "|" "DONE(d@/!)" "CANCELED(c@)"))) '((sequence "TODO(t)" "WAIT(w@/!)" "|" "DONE(d@)" "CANCELED(c@)"))) None of them worked, when I switch to DONE, no note is added What do I miss? Regards Uwe Brauer