0
votes

How I can find the agenda items which are not tagged in org-agenda mode? If I use the filtering option org-agenda-filter-by-tag (/ - or C=u /) I have to exclude one by one all tags to achieve this and that is not what I want exactly.

1
You have 3 choices in org-mode to generate an *Org Agenda* buffer. M-x org-tags-view or M-x org-search-view or M-x org-agenda-list. The variable org-agenda-custom-commands is used by many people because it makes it easier to utilize the above-mentioned. To read more about the functions, type M-x describe-function. To read more about searches, read the advanced-search page from the manual: orgmode.org/worg/org-tutorials/advanced-searching.html You can also use org-occur within the org-mode flat file -- which is a method of folding non-relevant search criteria. - lawlist

1 Answers

2
votes

Use the special property TAGS:

TAGS=""

will match headlines with no tags.

See http://orgmode.org/org.html#Special-properties.