Re: [tw5] Re: How to add group for untagged tiddlers to table of contents?

2019-11-07 Thread MaxGyver
@Mark: <$list filter="[!is[system]] -[enlist[Tag1 Tag2 Tag3]tagging[]]" > Yes, that looks cleaner. Thanks. @Tony: > Later you can look at grouping here https://tiddlywiki.com/#GroupedLists > This indents my list at least but it's still very different than the rest of the table of contents. I

Re: [tw5] Re: How to add group for untagged tiddlers to table of contents?

2019-11-06 Thread TonyM
Max, Later you can look at grouping here https://tiddlywiki.com/#GroupedLists Regards Tony On Thursday, November 7, 2019 at 5:45:26 AM UTC+11, MaxGyver wrote: > > Thanks for clarifying! > > *<$list filter="[!is[system] untagged[]]">* was wrong! > It must be* <$list

Re: [tw5] Re: How to add group for untagged tiddlers to table of contents?

2019-11-06 Thread 'Mark S.' via TiddlyWiki
A version that's somewhat easier to maintain, assuming your tags have no spaces or special characters: <$list filter="[!is[system]] -[enlist[Tag1 Tag2 Tag3]tagging[]]" > On Wednesday, November 6, 2019 at 10:45:26 AM UTC-8, MaxGyver wrote: > > Thanks for clarifying! > > *<$list

Re: [tw5] Re: How to add group for untagged tiddlers to table of contents?

2019-11-06 Thread Max Schillinger
Thanks for clarifying! *<$list filter="[!is[system] untagged[]]">* was wrong! It must be* <$list filter="[untagged[]!is[system]]">* instead*.* That's very similar to *<$list filter="[!is[system]!tag[Tag1]!tag[Tag2]!tag[Tag3]]">*. The latter is more complete. It contains the same tiddlers as the

Re: [tw5] Re: How to add group for untagged tiddlers to table of contents?

2019-11-04 Thread Sylvain Comte
Hello, By the way * !has[tags] was not a good way to proceed. Only tiddlers WITHOUT a tags field will be listed. i.e. handcoded tiddlers since tw created ones always have a tags field, * untagged[] is a better way and will give you also tiddlers with empty tags field, * not sure about what

[tw5] Re: How to add group for untagged tiddlers to table of contents?

2019-11-04 Thread MaxGyver
Thanks for your answers! > You are after a list of tiddlers not tagged with a specific set of tags, > rather than tagless tiddlers? > I want all tagless tiddlers because the table of contents only lists all my tagged tiddlers. So a filter like !has[tags] or untagged[] seems to be fine. I