Is there a way to configure TiddlyWiki or a plugin, so that when closing a link (]]), if the tiddler does not exist, one is automatically created? Of course I am thinking of TiddlyBlink - this would replicate a very handy, time-saving feature of Roam. There would be no need to click edit then click save changes for each tiddler.
a.tc-tiddlylink-missing
{ font-style:initial; }
.tc-tiddler-missing .tc-title
{ font-style:initial; font-weight:300; }
I just meant that if there were a way for closing a link to a missing tiddler to trigger TW into creating an actual tiddler. Would save two steps. But I realize I am asking for the moon on this one.
The behavior in Roam research is interesting: click [[, and the closing ]] is automatically inserted after the cursor. Start typing, one character, and a dropdown list of your Roam pages appears, and the list gets filtered as you type. Hit enter, and the cursor jumps to just after the ]] . And the page for whatever you typed already exists as a page in Roam. It's really intuitive and saves steps. I figured it didn't hurt to ask.
<$list filter="[all[current]links[]is[missing]]">
<$action-createtiddler $basetitle=<<currentTiddler>>/>
</$list>
--
You received this message because you are subscribed to a topic in the Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/tiddlywiki/xo-kICZZEcg/unsubscribe.
To unsubscribe from this group and all its topics, send an email to tiddlywiki+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/3a51a60a-bd98-4bab-ae90-32a1eb6829e0%40googlegroups.com.
Hi David, you probably just pressed the save button and you 'd need to edit $:/core/Buttons/save so that it works by clicking the button. Now it should work by hitting ctrl-enter, did you try that?
--
You received this message because you are subscribed to a topic in the Google Groups "TiddlyWiki" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/tiddlywiki/xo-kICZZEcg/unsubscribe.
To unsubscribe from this group and all its topics, send an email to tiddlywiki+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/5962b531-3f24-44b9-a885-d9390cae8e16%40googlegroups.com.
Just tested Bimlas' code in Blink. It seems like the easiest solution to your request.