Hi Paul,

Paul Mead <paul.d.m...@gmail.com> writes:

> I want the option to have TODO items with the tag "FOCUS" listed in both
> the custom block agenda, and as a list in its own right. In the custom
> block agenda however, I only want to see those which are unscheduled,
> not WAITING, not STARTED as I've already listed those items above - it's
> this section where I want to see all the FOCUS actions which I haven't
> addressed yet.

Does the following work?

--8<---------------cut here---------------start------------->8---
(setq org-agenda-custom-commands
           '(("a" "Custom block Agenda"
              ((agenda "")
               (todo "STARTED")
               (tags "FOCUS/!-STARTED-WAITING"  
                     ((org-agenda-todo-ignore-scheduled t))))) 
             ("d" todo "DONE"
              ((org-agenda-todo-ignore-scheduled nil)
               (org-agenda-todo-ignore-with-date nil)
               (org-agenda-todo-ignore-deadlines nil)))
             ("p" "Project list" tags "project")
             ("f" "FOCUS list" tags-todo "FOCUS")
))
--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