From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Weissmann Subject: Feature request: custom clock headings Date: Mon, 26 Nov 2007 12:29:24 +0000 (UTC) Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Iwd5w-0004BR-3b for emacs-orgmode@gnu.org; Mon, 26 Nov 2007 07:29:48 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Iwd5u-0004A8-Cx for emacs-orgmode@gnu.org; Mon, 26 Nov 2007 07:29:47 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Iwd5u-0004A3-1S for emacs-orgmode@gnu.org; Mon, 26 Nov 2007 07:29:46 -0500 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1Iwd5t-0007sc-NW for emacs-orgmode@gnu.org; Mon, 26 Nov 2007 07:29:45 -0500 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1Iwd5m-0004cM-Mb for emacs-orgmode@gnu.org; Mon, 26 Nov 2007 12:29:38 +0000 Received: from mail2.siscog.pt ([195.22.30.41]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 26 Nov 2007 12:29:38 +0000 Received: from trmsw by mail2.siscog.pt with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 26 Nov 2007 12:29:38 +0000 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 Many of my subtasks have the same name, so the current modeline isn't always very useful - if I'm working on a particular bug it might tell me "[1:20 Reproduce the error]", whereas I'd prefer it to say "[1:20 Bug #12303 Disappearing accounts ... Reproduce the error]" Could we have the option to create a custom function to create clock headings? Eg, somewhere in `org-clock-in': ... (if org-custom-clock-heading ;; custom clock heading (funcall org-custom-clock-heading) ;; business as usual (if (looking-at org-todo-line-regexp) (setq org-clock-heading (match-string 3)) ...