How do I have a list of recently viewed tiddlers

For example, if I open tiddler_a,tiddler_b,tiddler_c, but do not edit them, in this list will also show tiddler_a,tiddler_b,tiddler_c, turn them off, all three of them still exist in this list, set the threshold to 50, When previewing item 51 tiddlers, the list will crowd out the tiddlers viewed the first time, and the same tiddlers that are opened repeatedly will also be counted

See $:/HistoryList documentation.

<<list-links filter:"[[$:/HistoryList]indexes[]sortan[]] :map[[$:/HistoryList]get[text]jsonget{!!title},[title]] +[unique[]]" >>

(possibly with +[reverse[]] tacked on if you want the latest visits first.) Remove the +[unique[]] if you want to see all tiddler visits, including duplicates.

1 Like

Thank you very much for providing the solution, the effect is perfect, is this feature come with $:/HistoryList? Tears of joy

The list widget is used to list items in the “story” and has the following parameters;

storyview Optional name of module responsible for animating/processing the list
history The title of the tiddler containing the navigation history

Note the history is session related and refreshes on wiki reload, it is not saved.

1 Like