From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Steve Cothern" Subject: Re: Toggle 'closed' in org-agenda-log-mode-items Date: Wed, 28 Oct 2009 15:21:29 -0700 Message-ID: References: <211769420907301510l433cbed3kae0b5ec9a56f6315@mail.gmail.com><87bpn1zsvq.fsf@gollum.intra.norang.ca> <211769420907310652j5b378f4fi4c0be8d7910dddf4@mail.gmail.com> Reply-To: Steve Cothern Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1N3Gxv-0007Pq-Kz for emacs-orgmode@gnu.org; Wed, 28 Oct 2009 18:26:03 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1N3Gxr-0007I0-JX for emacs-orgmode@gnu.org; Wed, 28 Oct 2009 18:26:03 -0400 Received: from [199.232.76.173] (port=57035 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1N3Gxr-0007Hn-D1 for emacs-orgmode@gnu.org; Wed, 28 Oct 2009 18:25:59 -0400 Received: from lo.gmane.org ([80.91.229.12]:55312) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1N3Gxr-0001cx-2o for emacs-orgmode@gnu.org; Wed, 28 Oct 2009 18:25:59 -0400 Received: from list by lo.gmane.org with local (Exim 4.50) id 1N3Gxn-000728-8K for emacs-orgmode@gnu.org; Wed, 28 Oct 2009 23:25:55 +0100 Received: from 216.52.240.243 ([216.52.240.243]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 28 Oct 2009 23:25:55 +0100 Received: from steve.cothern by 216.52.240.243 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 28 Oct 2009 23:25:55 +0100 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 Hi Nathan, I wanted to do the same thing. Here's a snippet of elisp that does the job -- it's a bit simpleminded but gets the job done: (defun org-toggle-agenda-show-closed-logs () ;; pseudo code ------ ;if org-agenda-log-mode-items contains 'closed' then ; remove 'closed' from org-agenda-log-mode-items ;else ; add 'closed' to org-agenda-log-mode-items ;(refresh the agenda view) (interactive) (if (equal (car org-agenda-log-mode-items) 'closed) (setq org-agenda-log-mode-items '(clock)) (setq org-agenda-log-mode-items '(closed clock))) (org-agenda-redo) ) Cheers, Steve "Nathan Neff" wrote in message news:211769420907310652j5b378f4fi4c0be8d7910dddf4@mail.gmail.com... On Thu, Jul 30, 2009 at 5:51 PM, Bernt Hansen wrote: > Nathan Neff writes: > >> I know that I can set this variable or define a custom agenda view >> if I only want to see clocked items in the agenda: >> >> (setq org-agenda-log-mode-items (quote (clock))) >> >> But, I like the way that the 'l' and 'R' keys work in the agenda, >> where they show/hide >> the log and the clock report. >> >> Is there a way to define something similar for the showing/hiding of >> Closed log items in the agenda? >> >> I'm not very good at lisp, so something like this pseudo-code: >> >> (defun org-toggle-agenda-show-closed-logs () >> ;; pseudo code ------ >> if org-agenda-log-mode-items contains 'closed' then >> remove 'closed' from org-agenda-log-mode-items >> else >> add 'closed' to org-agenda-log-mode-items >> (refresh the agenda view) >> ) >> >> (define-key org-mode-map (kbd "") >> 'org-toggle-agenda-show-closed-logs) > > l in the agenda shows clock times only with your setup. > > C-u l shows task state changes too. Is that what you are looking for or > do you only want the closed states? > I would like to be able to press some key and toggle between these two things: 1) Show Clocked tasks only 2) Show Clocked tasks and Closed items Thanks for any ideas, --Nate _______________________________________________ Emacs-orgmode mailing list Remember: use `Reply All' to send replies to the list. Emacs-orgmode@gnu.org http://lists.gnu.org/mailman/listinfo/emacs-orgmode