emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Toggle 'closed' in org-agenda-log-mode-items
@ 2009-07-30 22:10 Nathan Neff
  2009-07-30 22:51 ` Bernt Hansen
  0 siblings, 1 reply; 4+ messages in thread
From: Nathan Neff @ 2009-07-30 22:10 UTC (permalink / raw)
  To: emacs-orgmode

Hello,

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 "<f6>") 'org-toggle-agenda-show-closed-logs)

Thanks for any feedback,
--Nate

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Toggle 'closed' in org-agenda-log-mode-items
  2009-07-30 22:10 Toggle 'closed' in org-agenda-log-mode-items Nathan Neff
@ 2009-07-30 22:51 ` Bernt Hansen
  2009-07-31 13:52   ` Nathan Neff
  0 siblings, 1 reply; 4+ messages in thread
From: Bernt Hansen @ 2009-07-30 22:51 UTC (permalink / raw)
  To: Nathan Neff; +Cc: emacs-orgmode

Nathan Neff <nathan.neff@gmail.com> 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 "<f6>") '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?

-Bernt

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Toggle 'closed' in org-agenda-log-mode-items
  2009-07-30 22:51 ` Bernt Hansen
@ 2009-07-31 13:52   ` Nathan Neff
  2009-10-28 22:21     ` Steve Cothern
  0 siblings, 1 reply; 4+ messages in thread
From: Nathan Neff @ 2009-07-31 13:52 UTC (permalink / raw)
  To: Bernt Hansen; +Cc: emacs-orgmode

On Thu, Jul 30, 2009 at 5:51 PM, Bernt Hansen<bernt@norang.ca> wrote:
> Nathan Neff <nathan.neff@gmail.com> 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 "<f6>") '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

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: Toggle 'closed' in org-agenda-log-mode-items
  2009-07-31 13:52   ` Nathan Neff
@ 2009-10-28 22:21     ` Steve Cothern
  0 siblings, 0 replies; 4+ messages in thread
From: Steve Cothern @ 2009-10-28 22:21 UTC (permalink / raw)
  To: emacs-orgmode

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" <nathan.neff@gmail.com> wrote in message 
news:211769420907310652j5b378f4fi4c0be8d7910dddf4@mail.gmail.com...
On Thu, Jul 30, 2009 at 5:51 PM, Bernt Hansen<bernt@norang.ca> wrote:
> Nathan Neff <nathan.neff@gmail.com> 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 "<f6>") 
>> '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

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-10-28 22:26 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-07-30 22:10 Toggle 'closed' in org-agenda-log-mode-items Nathan Neff
2009-07-30 22:51 ` Bernt Hansen
2009-07-31 13:52   ` Nathan Neff
2009-10-28 22:21     ` Steve Cothern

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).