Opening a tiddler in edit mode/name for draggable sort

Hi. I’m wondering if there is a way to link to a tiddler such that it appears already in edit mode.

Also, I have the following button:

<$button class="tc-btn-invisible"><$list filter="[tag[home]]"><$action-navigate $to=<<currentTiddler>> /></$list>Open all&nbsp;{{$:/core/images/open-window}}</$button>

I have sorted my “home” tiddlers manually via the tag pill list feature. When I click the button above, the river shows them in reverse order of how they are listed in the pill drop-down. Is there a name for this type of sort so that I can specify it in the filter with an exclamation mark?

Hi, I think the manually sorted result is stored in the list field of that tiddler, you can use some filter to get this information and feed it to the <$list> widget!

appears already in edit mode.

I don’t know about this, sorry~

Check this plug in - whether it suit your needs.

https://bimlas.gitlab.io/tw5-override-navigation/

There is a reverse operator:
<$list filter="[tag[home]reverse[]]">

2 Likes

open with edit a tiddler using this message
<$action-sendmessage $message="tm-edit-tiddler" $param=<<currentTiddler>> />

1 Like

Link to the filter operator docs.

1 Like