The documentation for Filter Expression states the following:
If a run has a
+ prefix, it receives the filter's output so far as its input. The filter's output is then completely
replaced by the run's output. Any subsequent run reverts to receiving all tiddler titles as its input, unless it too has a
+ prefix.
But then it states:
| Run | Interpretation | Output |
|---|
run | union of sets | ... OR run |
+run | intersection of sets | ... AND run |
-run | difference of sets | ... AND NOT run |
What I want is the second behavior I want tiddlers from run 1 that are also in run 2. What I'm getting is just run2 regardless of what I put in run1. That doesn't seem to be useful.