Hi Ken, Ken Mankoff <mank...@gmail.com> writes:
> I tried setting the regexp to "\ WAITING\ " but that did not fix it. > > How can I improve the regexp, or is there a better way to show TODO > items that are TODO, STARTED, WHATEVER, but not WAITING (or not > WAITING and SOMETHINGELSE). ,----[ (describe-function 'org-agenda-skip-if) ] | (org-agenda-skip-if SUBTREE CONDITIONS) | [...] | CONDITIONS is a list of symbols, boolean OR is used to combine the results | from different tests. Valid conditions are: | | scheduled Check if there is a scheduled cookie | notscheduled Check if there is no scheduled cookie | deadline Check if there is a deadline | notdeadline Check if there is no deadline | timestamp Check if there is a timestamp (also deadline or scheduled) | nottimestamp Check if there is no timestamp (also deadline or scheduled) | regexp Check if regexp matches | notregexp Check if regexp does not match. > todo Check if TODO keyword matches | nottodo Check if TODO keyword does not match | | `todo' and `nottodo' accept as an argument a list of todo | keywords, which may include "*" to match any todo keyword. | > (org-agenda-skip-entry-if 'todo '("TODO" "WAITING")) | | would skip all entries with "TODO" or "WAITING" keywords. | | Instead of a list, a keyword class may be given. For example: | | (org-agenda-skip-entry-if 'nottodo 'done) `---- Does that help? Memnon