From mboxrd@z Thu Jan 1 00:00:00 1970 From: Richard Lawrence Subject: Re: How to view everything DONE today? Date: Wed, 26 Nov 2014 08:49:16 -0800 Message-ID: <87oartq54j.fsf@berkeley.edu> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60515) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtfnV-0007KR-QX for emacs-orgmode@gnu.org; Wed, 26 Nov 2014 11:50:41 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XtfnO-0003pg-9x for emacs-orgmode@gnu.org; Wed, 26 Nov 2014 11:50:33 -0500 Received: from plane.gmane.org ([80.91.229.3]:42822) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XtfnO-0003pc-2y for emacs-orgmode@gnu.org; Wed, 26 Nov 2014 11:50:26 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XtfnM-0008Q8-W7 for emacs-orgmode@gnu.org; Wed, 26 Nov 2014 17:50:25 +0100 Received: from c-67-169-117-151.hsd1.ca.comcast.net ([67.169.117.151]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 26 Nov 2014 17:50:24 +0100 Received: from richard.lawrence by c-67-169-117-151.hsd1.ca.comcast.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 26 Nov 2014 17:50:24 +0100 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org 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". This will show you all the tasks you worked on, including the ones that you marked done. I'm not sure if this is possible without logging, since your org files won't record when tasks were marked done. You can turn on logging with a line like #+STARTUP: logdone in the preamble of an org file to turn logging on for that file, or (setq org-log-done 'time) in your .emacs, to turn it on globally. To keep things neat, you might also want to use #+STARTUP: logdrawer or (setq org-log-into-drawer t) so your logs go in a LOGBOOK drawer. Hope that helps! Best, Richard