[tw5] Re: How to find or filter all tiddlers that have custom fields?

2018-08-15 Thread Alexei R
Thank you Eric! It is exactly what I was looking for! How do you manage to get all the brackets in right order? It's insane ;-) I wonder how one can even think of some thing like that? I dropped the (<>): expression at line 12; It's always receives an empty string On Wednesday, August 15, 20

[tw5] Re: How to find or filter all tiddlers that have custom fields?

2018-08-15 Thread Alexei R
Thank you it is exactly what I was looking for! But you can get the same result with: <]">> instead of: <$link to=<>><> On Wednesday, August 15, 2018 at 2:59:22 PM UTC+3, FrD wrote: > > Hi, > > Assuming that the "non-custom" fields of a tiddler are : > >- title >- text >- tags >

[tw5] Re: How to find or filter all tiddlers that have custom fields?

2018-08-15 Thread TonyM
Alexei, Are you asking a much simpler question? <$list filter="[has:field[fieldname]]"> Which will list all tiddlers with the custom field "fieldname"? Then if you want to do work with that like get the content of the field, try <$list filter="[has:field[fieldname]]" variable=each> <$lis

[tw5] Re: How to find or filter all tiddlers that have custom fields?

2018-08-15 Thread Eric Shulman
On Wednesday, August 15, 2018 at 4:03:47 AM UTC-7, Alexei R wrote: > > How to find or filter all tiddlers that have some custom fields? > Try this: \define customfields() [is[current]fields[]] -[[type]] -[[module-type]] -[[creator]] -[[created]] -[[modified]] -[[text]] -[[title]] -[[c

[tw5] Re: How to find or filter all tiddlers that have custom fields?

2018-08-15 Thread FrD
Hi, Assuming that the "non-custom" fields of a tiddler are : - title - text - tags - modified - created - type Here is my proposal (but not sure it works really as intended). You'd better test it : <$list filter="[all[tiddlers]!is[system]!has[draft.of]]"> <$list filter="[]fie