HOw can I add a tag to multiple Tiddlers easily?
I have a bunch of shopping items as tiddlers and they are already tagged with "ShoppingItem", and they are my SamsClub shopping list. Now that I've gotten that working nicely, I'd like to bring in a couple more stores. So I need to tag all the ShoppingItem tiddlers with a SamsClub tag.
As a workaround, I have a tiddler with this code in it, to identify the ShoppingItems that do NOT yet have the SamsClub tag. It makes it easy to open them, edit them, and then save them. To this maybe we could make it open up the tiddler in edit mode? That would make things somewhat quick, though not as quick as a bulk tagger.
<$list filter="[tag[ShoppingItem]!tag[SamsClub]]" variable="item">
<$link to=<<item>> /><br>
</$list>