[tw5] Re: how to open all the results after tag filter?

2020-09-02 Thread TW Tones
If you want tiddler titles, only with the tag Journal, and not any which has any other additional tag <$list filter="[tag[Journal]]"> <$list filter="[all[current]get[tags]match[Journal]]" variable=nul> The innerlist tests that the current tiddlers "tags field", which is after all a

[tw5] Re: how to open all the results after tag filter?

2020-09-02 Thread Brian Radspinner
Which part do you need help with? The code you have has two independent parts to it: a button that opens all the tiddlers with the Journal tag, and a title list of all tiddlers with the Journal tag. 1. If you only want the button to open tiddlers, delete the second <$list... by removing

[tw5] Re: how to open all the results after tag filter?

2020-09-02 Thread Mat
@Miguel Rafael See if using triple quotes around your filter works, ie <$list filter="""[tag[Journal]!tag[Journal Arte]!sort[created]]"""> <:-) -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving

[tw5] Re: how to open all the results after tag filter?

2020-09-02 Thread Miguel Rafael
I was trying to get the button to open all of my tiddlers tagged ONLY Journal but no luck. The below macro actually produces a list that excludes the entries for Journal Arte but somehow the button ends up opening them as well... Help? :) <$button>Open all with tag Journal <$list

[tw5] Re: how to open all the results after tag filter?

2020-08-26 Thread TW Tones
叶术 After installing my re-imagine tags package (Not finished) but attached. You could use a tag pill in the tags or with `<>` You will get multiple options appearing on the tag pill including open all and close all. Regards Tony On Thursday, 27 August 2020 01:35:07 UTC+10, 叶术 wrote: > >

[tw5] Re: how to open all the results after tag filter?

2020-08-26 Thread 'Mark S.' via TiddlyWiki
Here's a macro that might help \define open-tag(tag) <$button>Open all with tag ~$tag$ <$list filter="[tag[$tag$]]"> <$action-navigate /> <$list filter="[tag[$tag$]]"> \end <> On Wednesday, August 26, 2020 at 8:35:07 AM UTC-7, 叶术 wrote: > > hello all, > > I want to open all the results