I often use the new here button to quickly create child tiddlers to others, and one of the things I’ve noticed is that this workflow doesn’t always work if, for instance you are making a standard tiddler that is a child of a system tiddler, such as a sidebar tab tiddler, so it made me wonder, is there a way to change the new-here button conditionally to use a different field than the title field to tag the child tiddler, i.e. the caption field for instance?
I’m sure I am attempting something that wouldn’t work like I would think it would, but I attempted to place the following into my system tiddler to see if it would modify the buttons behavior (it did not lol)
\procedure newHereActions()
<$set name="tags" filter="[{!!caption}] [enlist{$:/config/NewTiddler/Tags}]">
<$action-sendmessage $message="tm-new-tiddler" tags=<<tags>>/>
</$set>
\end
Is there something like this, or possibly a field in a tiddler that can be configured to change how the button functions?