[tw5] Re: Help With BJTools StoryTopTabs

2018-04-07 Thread Kevin Kleinfelter
Well shucks. I'm an idiot. Selecting the current tiddler is a function of a plugin - plugins/nome/KbShortcuts. On Saturday, April 7, 2018 at 1:54:44 PM UTC-4, Kevin Kleinfelter wrote: > > StoryTopTabs is an elegantly brief extension. I'm hoping someone (BJ?) > can help me to tweak it. > > A v

[tw5] Re: help on filter and enlist

2018-10-06 Thread Jed Carty
The problem is that title in your filter is a construction operator (https://tiddlywiki.com/#Selection%20Constructors) If the things listed are tiddlers than you can use field:title[X] and it will work the way you expect, but only if there is a tiddler called X. If the list isn't just titles of

[tw5] Re: help on filter and enlist

2018-10-06 Thread Laurent Bonet
Perfect. Thanks so much for the reactivity and the clarity of the answer! Le samedi 6 octobre 2018 11:16:07 UTC+2, Laurent Bonet a écrit : > > Hello, > > Would like to get help on how to write a filter which include enlist. > I want to filter a list which is contained in field called validity (see

[tw5] Re: Help: <$view> widget template for currency?

2018-10-22 Thread JD
Hi Thomas, Thank you for directing me to your plugin! I got it to work perfectly, thank you so much! -jd On Saturday, October 20, 2018 at 12:48:38 AM UTC+9, Thomas Elmiger wrote: > > Hi JD, > > My simple math plugin RPN can do locale formatting for numbers. You would > just have to add the cu

[tw5] Re: Help: drag and drop along a hierarchy?

2018-09-23 Thread JD
Hi Tony, Thank you! I assume I have to create a recursive search on <>'s tags, upwards along its parentage... that will halt actions based on the existence of <> as an ancestral tag. I am wording this out terribly. Well, anyway, I am simply having trouble creating a <$list> loop for it :( Th

[tw5] Re: Help: drag and drop along a hierarchy?

2018-09-23 Thread TonyM
Jd, Im only on my mobile today, feeling a little ill, but I have done a lot of work on this but yet to implement. I want to make heirachies very powerful. My idea is to either build up the heirachy or scan a heirachy such that every tiddler in a heirachy contains a branch field, named according

[tw5] Re: Help: drag and drop along a hierarchy?

2018-09-23 Thread JD
Oh, wow. Get well soon, Tony! Looks like you have something much more complex planned out, while I am still pushing at the limits of current tagging and listing implementations. I do hope someone out there could help with this. If not, well, not a big deal. I simply have to study and experimen

[tw5] Re: Help: drag and drop along a hierarchy?

2018-09-23 Thread TonyM
Jd I will look at it soon, because these issues are on my devlopment path, In the meantime others may see what the issue is. 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,

[tw5] Re: [Help Request] List of tiddlers with only one particular tag

2018-06-18 Thread 'Mark S.' via TiddlyWiki
You can do this leveraging filter Runs to apply some Boolean logic. Or maybe illogic. For simplicity, I'm using "TagA" as the name of the tag. *Find:* all tiddlers tagged with TagA *From those, subtract the following group* find all tiddlers with TagA find all tags in those tiddlers, removin

[tw5] Re: [Help Request] List of tiddlers with only one particular tag

2018-06-18 Thread TonyM
Rene, I used this as an exercise and came up with this short macro. <$list filter="[tag[$intag$]]"> First it lists all tiddlers tagged with your target tag "one" in this example inside the first <$list With no variable set on the list statement this will change the current tiddler value <$list

[tw5] Re: [Help Request] List of tiddlers with only one particular tag

2018-06-18 Thread Rene
@TonyM and @MarkS Thank you both very much for responding! I will be honest and say that I ended up trying and using Mark's method, because it was a simple one-liner and it worked on first try. A thousand pardons TonyM, but for a person who struggles with code I jumped on the simpler solution

[tw5] Re: [Help Request] List of tiddlers with only one particular tag

2018-06-18 Thread Rene
Marked "Best Answer" by Question Asker On Monday, June 18, 2018 at 10:24:34 PM UTC+8, Mark S. wrote: > > You can do this leveraging filter Runs to apply some Boolean logic. Or > maybe illogic. > > For simplicity, I'm using "TagA" as the name of the tag. > > > *Find:* > all tiddlers tagged with T

[tw5] Re: [Help Request] List of tiddlers with only one particular tag

2018-06-18 Thread TonyM
Rene, No ego here to bother. But of course we in effect answered two different questions. I am glad you found one that suits. Regards Tony On Tuesday, June 19, 2018 at 11:08:28 AM UTC+10, Rene wrote: > > @TonyM and @MarkS > > Thank you both very much for responding! I will be honest and say th