Re: [tw5] is there an "AND" version of tagging operator?

2020-05-03 Thread TonyM
Riz I use the matches operator like this; [{tiddlernam}match[yes]] [get[fieldname]match[no]] Its a form of "string equals" All these operators have being there in previous releases. https://tiddlywiki.com/#match%20Operator Tony On Monday, 4 May 2020 09:27:09 UTC+10, Riz wrote: > > The

Re: [tw5] is there an "AND" version of tagging operator?

2020-05-03 Thread Rizwan Ishak
The following PR had a matches operater doing what I am talking about. https://github.com/Jermolene/TiddlyWiki5/pull/3003/files Has there been any developments regarding the same? I guess the current matches operater is not the same. On Mon, 4 May 2020, 04:50 Rizwan Ishak, wrote: > Yes > > On

Re: [tw5] is there an "AND" version of tagging operator?

2020-05-03 Thread Rizwan Ishak
Yes On Mon, 4 May 2020, 04:50 TonyM, wrote: > Riz > Perhaps also would be a better word than and if I understand you? > > tony > > -- > You received this message because you are subscribed to a topic in the > Google Groups "TiddlyWiki" group. > To unsubscribe from this topic, visit >

[tw5] is there an "AND" version of tagging operator?

2020-05-03 Thread TonyM
Riz Perhaps also would be a better word than and if I understand you? tony -- 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

[tw5] is there an "AND" version of tagging operator?

2020-05-03 Thread Riz
Say myfield contains a list of 5 titles - I want to find tiddlers tagged by all of them in combination [enlist{!!list}tagging[]] This code would list all tiddlers tagged by at least one of them - tag[title1] or tag[title2] and so on. I want to find tag[title1] AND tag[title2] AND tag[title3]