mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-01-23 07:26:54 +00:00
Add canned filter for recent system tiddlers
Useful when you need to establish the titles of tiddlers being used for state storage.
This commit is contained in:
parent
0a5eb0c848
commit
13726ef731
@ -1,6 +1,7 @@
|
||||
title: $:/language/Filters/
|
||||
|
||||
AllTiddlers: All tiddlers except system tiddlers
|
||||
RecentSystemTiddlers: Recently modified tiddlers, including system tiddlers
|
||||
RecentTiddlers: Recently modified tiddlers
|
||||
AllTags: All tags except system tags
|
||||
Missing: Missing tiddlers
|
||||
|
5
core/ui/Filters/RecentSystemTiddlers.tid
Normal file
5
core/ui/Filters/RecentSystemTiddlers.tid
Normal file
@ -0,0 +1,5 @@
|
||||
title: $:/core/Filters/RecentSystemTiddlers
|
||||
tags: $:/tags/Filter
|
||||
filter: [has[modified]!sort[modified]limit[50]]
|
||||
description: {{$:/language/Filters/RecentSystemTiddlers}}
|
||||
|
@ -1,5 +1,5 @@
|
||||
title: $:/core/Filters/RecentTiddlers
|
||||
tags: $:/tags/Filter
|
||||
filter: [!is[system]has[modified]!sort[modified]]
|
||||
filter: [!is[system]has[modified]!sort[modified]limit[50]]
|
||||
description: {{$:/language/Filters/RecentTiddlers}}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user