"John Wiegley" <jo...@gnu.org> writes: > In previous version of Org-mode, I was used to "/ t" showing me only entries > that matched the tag keyed by 't'. Now it hides them instead.
May you please provide a reproducer or at least more details? > I was able to > fix this using: > > modified lisp/org-agenda.el > @@ -8578,7 +8578,7 @@ also press `-' or `+' to switch between filtering and > excluding." > (org-agenda-filter-show-all-tag) > (setq tag (car a)) > (setq org-agenda-tag-filter > - (cons (concat (if exclude "-" "+") tag) > + (cons (concat (if exclude "+" "-") tag) which is fishy because "+" for "exclude" does not look right. -- Ihor Radchenko // yantar92, Org mode contributor, Learn more about Org mode at <https://orgmode.org/>. Support Org development at <https://liberapay.com/org-mode>, or support my work at <https://liberapay.com/yantar92>