Re: [tw5] Filter question: all tiddlers with that contain the current tiddler's title in their text field

2021-02-26 Thread 'Mark S.' via TiddlyWiki
Apparently I misunderstood the question -- I thought you wanted every tiddler with contents eponymously associated with their title. On Friday, February 26, 2021 at 10:14:33 AM UTC-8 David Gifford wrote: > The email reply didn't send yesterday. Thank you, Mark! > > On Thursday, February 25,

Re: [tw5] Filter question: all tiddlers with that contain the current tiddler's title in their text field

2021-02-26 Thread David Gifford
Thank you Diego! On Thursday, February 25, 2021 at 7:40:42 PM UTC-6 dieg...@gmail.com wrote: > I came up with the following: > > > {{{ [!is[system]regexp:text] }}} > > David's is this what you meant? > > Note: it doesnt work in draft/edit preview mode as the value of > currentTiddler then is

Re: [tw5] Filter question: all tiddlers with that contain the current tiddler's title in their text field

2021-02-26 Thread David Gifford
The email reply didn't send yesterday. Thank you, Mark! On Thursday, February 25, 2021 at 7:39:03 PM UTC-6 Mark S. wrote: > Since filter operators don't have a T operator (except maybe in "reduce"), > you need two list filters: > > <$list filter="[all[tiddlers]]"> > <$list

Re: [tw5] Filter question: all tiddlers with that contain the current tiddler's title in their text field

2021-02-25 Thread dieg...@gmail.com
David, I see you wanted a list widget. How about this: <$list filter="[!is[system]regexp:text]"> On Thursday, February 25, 2021 at 7:40:42 PM UTC-6 dieg...@gmail.com wrote: > I came up with the following: > > > {{{ [!is[system]regexp:text] }}} > > David's is this what you meant? > > Note:

Re: [tw5] Filter question: all tiddlers with that contain the current tiddler's title in their text field

2021-02-25 Thread dieg...@gmail.com
I came up with the following: {{{ [!is[system]regexp:text] }}} David's is this what you meant? Note: it doesnt work in draft/edit preview mode as the value of currentTiddler then is "Draft of"... but once you save it, it should work. On Thursday, February 25, 2021 at 7:39:03 PM UTC-6 Mark

Re: [tw5] Filter question: all tiddlers with that contain the current tiddler's title in their text field

2021-02-25 Thread 'Mark S.' via TiddlyWiki
Since filter operators don't have a T operator (except maybe in "reduce"), you need two list filters: <$list filter="[all[tiddlers]]"> <$list filter="[search:text:literal]"/> On Thursday, February 25, 2021 at 4:49:18 PM UTC-8 rayv...@gmail.com wrote: > Hmm trying but also not successful. >

Re: [tw5] Filter question: all tiddlers with that contain the current tiddler's title in their text field

2021-02-25 Thread Ray Vermey
Hmm trying but also not successful. Maybe someone else knows what the exact syntax is... Now time to sleep ;-) Cheers Ray Op vr 26 feb. 2021 om 01:37 schreef David Gifford : > Yes, transclude them. > > On Thu, Feb 25, 2021, 6:35 PM Ray Vermey wrote: > >> I am also learning and trying to help.

Re: [tw5] Filter question: all tiddlers with that contain the current tiddler's title in their text field

2021-02-25 Thread David Gifford
Yes, transclude them. On Thu, Feb 25, 2021, 6:35 PM Ray Vermey wrote: > I am also learning and trying to help. > So you have this tiddler called for instance "Walking" > > And now you want to list the tiddlers who have Walking in their text > field? The field you can add below your tidder so to

Re: [tw5] Filter question: all tiddlers with that contain the current tiddler's title in their text field

2021-02-25 Thread Ray Vermey
I am also learning and trying to help. So you have this tiddler called for instance "Walking" And now you want to list the tiddlers who have Walking in their text field? The field you can add below your tidder so to speak?? Ray Op vr 26 feb. 2021 om 01:25 schreef David Gifford : > I did, but

Re: [tw5] Filter question: all tiddlers with that contain the current tiddler's title in their text field

2021-02-25 Thread David Gifford
I did, but got a recursive error since it was including the current tiddler. On Thursday, February 25, 2021 at 6:15:41 PM UTC-6 rayv...@gmail.com wrote: > Can't you omit the [text] part?? > > Op vr 26 feb. 2021 om 01:11 schreef David Gifford : > >> >> Hi all >> >> I want to try out a list filter

Re: [tw5] Filter question: all tiddlers with that contain the current tiddler's title in their text field

2021-02-25 Thread Ray Vermey
Can't you omit the [text] part?? Op vr 26 feb. 2021 om 01:11 schreef David Gifford : > > Hi all > > I want to try out a list filter with all tiddlers with that contain the > current tiddler's title in their text field > > I tried > > <$list filter='[text[]]'> > > and similar options, but they

[tw5] Filter question: all tiddlers with that contain the current tiddler's title in their text field

2021-02-25 Thread David Gifford
Hi all I want to try out a list filter with all tiddlers with that contain the current tiddler's title in their text field I tried <$list filter='[text[]]'> and similar options, but they did not cause the tiddler that met that criteria to appear in the list. What am I doing wrong? And