emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] Re: Automatically insert inactive timestamps


From: Nick Dokos
Subject: Re: [Orgmode] Re: Automatically insert inactive timestamps
Date: Wed, 08 Dec 2010 10:10:14 -0500

Andrew J. Korty <address@hidden> wrote:

> Bernt Hansen <address@hidden> wrote:
> 
> > (add-hook 'org-insert-heading-hook 'bh/insert-heading-inactive-timestamp)
> 
> Using org-insert-heading-hook is more elegant than my way, but I only
> want timestamps on TODO entries, so I use
> 

I think you should be able to use org-entry-get in the hook to get the
TODO property of the entry and then conditionally add the timestamp -
something like this:

   (if (equal (org-entry-get (point) "TODO") "TODO")
      add the timestamp

Nick



   



reply via email to

[Prev in Thread] Current Thread [Next in Thread]