1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-12-25 17:40:29 +00:00

Tweak the standard list filters

This commit is contained in:
Jeremy Ruston 2012-10-23 16:28:53 +01:00
parent 3a710ad9ce
commit 91bebe7b7f

View File

@ -30,10 +30,11 @@ exports.info = {
These types are shorthands for particular filters These types are shorthands for particular filters
*/ */
var typeMappings = { var typeMappings = {
all: "[!is[shadow]]", all: "[!is[shadow]sort[title]]",
missing: "[is[missing]]", recent: "[!is[shadow]sort[modified]]",
orphans: "[is[orphan]]", missing: "[is[missing]sort[title]]",
shadowed: "[is[shadow]]" orphans: "[is[orphan]sort[title]]",
shadowed: "[is[shadow]sort[title]]"
}; };
exports.executeMacro = function() { exports.executeMacro = function() {