I have a custom search that let me search a data tiddler for indexes, but can I also search for the corresponding value? In my abbreviation-x-tiddler-dictionary I would like to be able to search for the name or the abbreviation, I guess I could create one more data tiddler using the same content but revers the indexes for the values but it seems redundant
<table>
<$list filter="[[$:/_dictionary/abbreviation]] +[indexes[]search{$:/_state/customSearch}]">
<tr>
<td><<currentTiddler>></td>
<td><$view tiddler="$:/_dictionary/abbreviation" index=<<currentTiddler>>/></td>
<td><$view tiddler="$:/_dictionary/pronunciation" index=<<currentTiddler>>/></td>
</tr>
</$list>
</table>