Mervin,

The filter is unable to do this because it only finds the connection 
between tiddlers, which are defined by fields.

To achieve what you want, here's a solution:

<$list filter="[all[shadows]]">
  <$list filter="[all[current]tags[]suffix[SideBar]]" 
variable="doNotOverrideCurrent">
  <<list-links filter:"[all[current]]">>
  </$list>
</$list>

On the first line `[all[shadows]]` defining the input tiddlers, on the 
second line `tags[]suffix[SideBar]]` allowing only those of the input 
tiddlers that have a tag ending with `SideBar`.

Same logic, but now search for `$:/tags/Edit` prefix in tiddler's tags by 
`prefix[]`:

<$list filter="[all[shadows]]">
  <$list filter="[all[current]tags[]prefix[$:/tags/Edit]]" 
variable="doNotOverrideCurrent">
  <<list-links filter:"[all[current]]">>
  </$list>
</$list>

Search for portion of tag names by `search:title[]`:

<$list filter="[all[shadows]]">
  <$list filter="[all[current]tags[]search:title[Library]]" 
variable="doNotOverrideCurrent">
  <<list-links filter:"[all[current]]">>
  </$list>
</$list>

For more information, 
see: 
https://tiddlywiki.com/#prefix%20Operator:[[prefix%20Operator]]%20[[suffix%20Operator]]%20[[search%20Operator]]

-- 
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 post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/ba577e58-9ab1-44d2-99e2-26da5c8d0318%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to