Sorry for not make the question clear. 

What I want is I need a search bar to search all the tiddlers, when I 
select one in the search bar, I can copy all the tags of the 
target tiddlers to my current edit tiddler. 

Is there a way to make it? 

For example I am reading the story about Porter, Porter is a tiddler in my 
wiki with tag: A, B, C. 

Then I want to create another tiddler which topic is Porter's Youth. Means 
I need the tag A, B, C. But I don't want to type all of the tags again. So 
I need sth like plugin to search for a tiddler and copy all the tags to the 
current. 

Any way to make it? 


On Saturday, August 1, 2020 at 4:00:16 PM UTC+8, TW Tones wrote:
>
> Zhe,
>
> I do not fully understand you question, however this may help.
>
> <$list filter="[all[]tags[]]" variable=tag>
>    <$checkbox tag=<<tag>> ><$text text=<<tag>>/></$checkbox><br>
> </$list>
> This lists all tags in the wiki and allows you to add them to the current 
> tiddler with a checkbox.
> Use it to check your filter locates what you want
>
> You can change "[all[]tags[]]" to what every you want to identify the 
> tags.
>
> Alternatively you would use a similar list inside a button with something 
> like;
>
> <$action-sendmessage $message="tm-add-tag" $param=<<tag>>/>
>
> Eg
> <$fieldmangler>
> <$button tooltip="Add all tags found using [all[]tags[]prefix[a]]">
> <$list filter="[all[]tags[]prefix[a]]" variable=tag>
>    <$action-sendmessage $message="tm-add-tag" $param=<<tag>>/>
> </$list>
> Go
> </$button>
> </$fieldmangler>
> Above tested with "[all[]tags[]prefix[a]]" on tiddlywiki.com
>
> Regards
> TW Tones
>
>
>
> On Saturday, August 1, 2020 at 2:34:13 PM UTC+10, Zhe Lee wrote:
>>
>> I have a lot of tid  All related to one tid.  Something like a parent 
>> node.  So I need to inherit all the tags from the parents.  But the parents 
>> have so many tags.  It is very inconvenient to type them one by one. 
>>
>> So I'm looking for a function or a plugin  Which can help me searching a 
>> tid and copy all the tags to the current one .
>>
>

-- 
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/c6465641-95c7-45a4-b561-62fd0d8764a8o%40googlegroups.com.

Reply via email to