[all[current]subfilter{tiddler-with-filter}]
works when filter in tiddler-with-filter is something like:
[tag[myTag]]
*which tests conditions on its input (i.e. selection modifiers).*
However if the filter applied by your subfilter is of the form:
HelloThere (i.e. selection constructor)
It is equivalent to writing [all[current]title[HelloThere]] which will
always evaluate to HelloThere and since the filter always has a result your
view template will be applied to all tiddlers.
Alternatively if you want to use selection constructors, you could do this
though it will be slower:
[all[current]] :intersection[subfilter{tiddler-with-filter}]
or
[subfilter{tiddler-with-filter}contains:title<currentTiddler>]
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/tiddlywiki/794e047e-d2d3-4dbc-97dd-ba38cbe30682n%40googlegroups.com.