How to filter out the system tiddlers from the All list?
1,116 views
Skip to first unread message
kev
unread,
May 21, 2012, 5:01:41 AM5/21/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to tiddl...@googlegroups.com
The All list in the sidebar would be more useful and more logical if I could filter out the system tiddlers from the list so I only see the content tiddlers. Is there a way of doing that?
Even better would be a toggle to show content or system tiddlers.
Thanks
Måns
unread,
May 21, 2012, 8:13:42 AM5/21/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to TiddlyWiki
Hi kev
> The All list in the sidebar would be more useful and more logical if I
> could filter out the system tiddlers from the list so I only see the
> content tiddlers. Is there a way of doing that?
>
There are many ways to do it..
Imo the most obvious way would be to add a filter to the standard list
filter macro, like this:
<<list filter [tag[systemConfig]]>> (shows all tiddlers tagged with
systemConfig - This works already)
<<list All [notag[systemConfig]]>> (should show all tiddlers except
tiddlers tagged with systemConfig - this doesn't work yet...)...
There are several plugins which will let you filter out tiddlers based
on a specified tag.
1) MatchTagsPlugin http://www.TiddlyTools.com/#MatchTagsPlugin "extends the [tag[tagname]] macro parameter syntax used by the
TiddlyWiki core <<list>> macro so that, instead of a simple tagname
value, you can specify a complex combination of tagname values using a
boolean expression containing AND, OR, and NOT operators, enclosed in
nested parentheses if needed."
2) ForeachTiddlerPlugin http://tiddlywiki.abego-software.de/#ForEachTiddlerPlugin a)<<forEachTiddler where 'tiddler.tags.contains("systemConfig")'>>
b)<<forEachTiddler where '! tiddler.tags.contains("systemConfig")'>>
(exclamation sign= NOT)
> Even better would be a toggle to show content or system tiddlers.
5) TableOfContentsPlugin http://www.tiddlytools.com/#TableOfContentsPlugin "This plugin replaces the standard tabs with a listbox/droplist
control that uses a very small amount of page space, regardless of the
number of tiddlers in the document."
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to tiddl...@googlegroups.com
thank you. I will try later. The first one seems best. I am happy with the sidebar as it is - it will be nice to just see the a-z list. I have a TW for learning Chinese. Sometimes I just want to find a topic or see where I am in the list so the a-z is useful for that.