Hi again,
I came across this code to open all tiddlers, perfect for checking them all without forgetting some. Previously I was using the tiddler manager, but then it is easy to skip items.
But it also opens system tiddlers, and the ones I want to review are already easily found in a single directory.
<$button>
<$list filter = "[all[tiddlers]!sort[]]">
<$action-navigate $to={{!!title}}/>
</$list>
open tiddlers
</$button>
this is what I tried so far
<$button>
<$list filter = "[all[tiddlers]!sort[]][!is[system]]">
<$action-navigate $to={{!!title}}/>
</$list>
open tiddlers
</$button>
It does exclude the system tiddlers, but now it’s listing them in reverse order.
To be sure that is already an improvement, but it would be better if it was sorted alphabetically.
Edit: never mind, it was solved by adding a + before the second sort, as that discards the previous filter except as input for the current one =)