Andrew J. Korty <a...@iu.edu> wrote:

> Bernt Hansen <be...@norang.ca> 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



   

_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to