From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: first step of newbe: *TODO Date: Fri, 13 Dec 2013 14:39:26 -0500 Message-ID: <87vbysy1zl.fsf@alphaville.bos.redhat.com> References: <52AB3FC9.8030107@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:56796) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VrYaV-0002gz-Q5 for emacs-orgmode@gnu.org; Fri, 13 Dec 2013 14:39:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VrYaP-0003UP-LG for emacs-orgmode@gnu.org; Fri, 13 Dec 2013 14:39:51 -0500 Received: from plane.gmane.org ([80.91.229.3]:32787) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VrYaP-0003UI-Ez for emacs-orgmode@gnu.org; Fri, 13 Dec 2013 14:39:45 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1VrYaG-0004Qe-Na for emacs-orgmode@gnu.org; Fri, 13 Dec 2013 20:39:36 +0100 Received: from nat-pool-bos-t.redhat.com ([66.187.233.206]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 13 Dec 2013 20:39:36 +0100 Received: from ndokos by nat-pool-bos-t.redhat.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 13 Dec 2013 20:39:36 +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 Renato writes: > Hi, > as I already told, I'm a really newbe (to org-mode, as well as emacs) > I'm starting from the very beginning: > following the Doc (here: > http://orgmode.org/worg/org-tutorials/orgtutorial_dto.html) > I wrote my firs TODO list. > But when I press C-c C-t over a TODO element, it appear DONE, write > near the task, but not the CLOSED [time...] on the line after that. > > What I have to do? > There are two ways to get the CLOSED line: o You can add the following line to your file: #+STARTUP: logdone After you do that, you have to make sure that you reinitialize the state of the file so that org will know about it. The simplest way is to put the cursor on the #+STARTUP line and press C-c C-c. Another way is to close the file and reopen it. Note that this setting will affect this particular file *only*. o If you want the CLOSED line universally, then add the following to your .emacs: (setq org-log-done 'time) Then exit emacs and start it again. Nick