Hi Julien,
julien cubizolles <[email protected]> writes:
> Is there a way to make the agenda view display only the entries with a
> timestamp ? I would need that for a block agenda.
,----
| (setq org-agenda-custom-commands
| '(("d" "With timestamps" agenda "List of tasks with a timestamp"
| ((org-agenda-skip-function
| (lambda ()
| (let* ((ts (org-entry-get nil "TIMESTAMP")))
| (if (or (not ts) (equal ts ""))
| (progn (outline-next-heading) (point))))))))))
`----
Not tested but it should work.
--
Bastien
_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-orgmode