Function: org-agenda-filter-remove-all
org-agenda-filter-remove-all is an interactive and byte-compiled
function defined in org-agenda.el.gz.
Signature
(org-agenda-filter-remove-all)
Documentation
Remove all filters from the current agenda buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-agenda.el.gz
(defun org-agenda-filter-remove-all ()
"Remove all filters from the current agenda buffer."
(interactive)
(when org-agenda-tag-filter
(org-agenda-filter-show-all-tag))
(when org-agenda-category-filter
(org-agenda-filter-show-all-cat))
(when org-agenda-regexp-filter
(org-agenda-filter-show-all-re))
(when org-agenda-top-headline-filter
(org-agenda-filter-show-all-top-filter))
(when org-agenda-effort-filter
(org-agenda-filter-show-all-effort))
(org-agenda-finalize)
(when (called-interactively-p 'interactive)
(message "All agenda filters removed")))