I vaguely remember there was a thread about pre-populating / filtering a
search request, and I think I created a simple script for that -
however, all I could find was this:
http://groups.google.com/group/TiddlyWiki/t/3d7ef3a4c5001ee4
(A more thorough search of the archives should unearth more resources.)
Also, this might be of interest:
http://www.tiddlywiki.org/wiki/Enhanced_Search
> I want to populate my Todo tiddler with
> everything I wrote there, and whereever I wrote "Todo" in the wiki
FWIW, you could also manually assign tags and use the Tag or Tagging
macro to display the respective tiddlers:
http://www.tiddlywiki.org/wiki/Tag_(macro)
http://www.tiddlywiki.org/wiki/Tagging_(macro)
HTH.
-- F.
Another option is the ForEachTiddlerPlugin*:
<<forEachTiddler
where 'tiddler.text.contains("foo")'
>>
-- F.
Try this:
where 'tiddler.text.toLowerCase().contains("foo")'
HTH.
-- F.
Yes; try the following:
<<forEachTiddler
where 'tiddler.tags.contains("foo") &&
tiddler.text.contains("bar")'
>>
This should give you all tiddlers with the tag "foo" and the term "bar"
in the tiddler contents.
Take a look at the FET macro's documentation - the possibilities are
almost endless...
-- F.
David