Open pedrormjunior opened 3 years ago
You could write a function to bind org-super-agenda-groups
around a call to org-agenda-list
.
As an example of what @alphapapa suggested, you could say:
(defun my-org-agenda-list (orig-fun &rest args)
(let ((org-super-agenda-groups '((:name "My Group" :tag "some_tag"))))
(apply orig-fun args)))
(advice-add 'org-agenda-list :around #'my-org-agenda-list)
Check out this manual page for more details.
It's mentioned in the Introduction of the README:
Is there a straightforward way of avoiding enabling it for
org-tags-view
,org-todo-list
,org-search-view
, etc.?