Martin Svenson <phr...@mail.com> writes:

> I'm trying to get a visual hint that a certain TODO is unscheduled, so
> that I can immediately see this when I go through the outline during
> regular reviews.
> ...

> ...but I get the nagging feeling I'm going about this the wrong way.
> Surely, being able to see which items are due for scheduling is a
> common task? (I do note that I could search for them, but then I would
> not have the context of the actually scheduled tasks in the same
> view...)

Within an org buffer, I would use a sparse tree:

C-c / m 
-SCHEDULED={.}/!

This tells org to highlight anything that does not have a scheduled
property. The "/!" tells Org to limit the search to active todos.

To see all unscheduled todos across my agenda files, I would use:

--8<---------------cut here---------------start------------->8---
(add-to-list 'org-agenda-custom-commands
             '("u" "Unscheduled" alltodo ""
               ((org-agenda-todo-ignore-scheduled t))))
--8<---------------cut here---------------end--------------->8---

Best,
Matt

_______________________________________________
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