Re: [O] How to view everything DONE today?

2014-11-27 Thread John Kitchin
try (org-read-date)? It seems to return a string after you select the date. #+BEGIN_SRC emacs-lisp (org-read-date) #+END_SRC #+RESULTS: : 2014-11-28 Sascha Ziemann writes: > This: > > http://jcardente.blogspot.de/2010/06/org-mode-hack-tasks-done-last-month.html > > inspired my to do this: >

Re: [O] How to view everything DONE today?

2014-11-27 Thread Sascha Ziemann
This: http://jcardente.blogspot.de/2010/06/org-mode-hack-tasks-done-last-month.html inspired my to do this: (defun org-done-view (&optional offset) "Shows all TODOs, which are done." (interactive "nOffset: ") (let ((offset (or offset 0))) (let ((t0 (calendar-current-date offset))

Re: [O] How to view everything DONE today?

2014-11-26 Thread John Kitchin
I am not sure how to do this through the agenda, but here is a way to find headlines in the current file that were closed today. You could wrap this in a loop over the files in your agenda list. It is a little clumsy on the time comparisons but it works ;) * Getting items done today ** DONE item

Re: [O] How to view everything DONE today?

2014-11-26 Thread Richard Lawrence
Hi Sascha, Sascha Ziemann writes: > I tried to get a list of all items done today. I tried to open the agenda > view but is does not show anything. What is the right command to see the > items done today? If you use logging, one way to do this is to press "l" in the agenda, to turn on "log mode

[O] How to view everything DONE today?

2014-11-26 Thread Sascha Ziemann
Hi, I tried to get a list of all items done today. I tried to open the agenda view but is does not show anything. What is the right command to see the items done today? Regards, Sascha