Nick Dokos <nicholas.do...@hp.com> wrote:
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
Iirc, the problem is that the entry doesn't yet have a todo keyword at
the time the hook is run.
ajk
_______________________________________________
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