1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-12-25 09:30:28 +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
*/
var typeMappings = {
all: "[!is[shadow]]",
missing: "[is[missing]]",
orphans: "[is[orphan]]",
shadowed: "[is[shadow]]"
all: "[!is[shadow]sort[title]]",
recent: "[!is[shadow]sort[modified]]",
missing: "[is[missing]sort[title]]",
orphans: "[is[orphan]sort[title]]",
shadowed: "[is[shadow]sort[title]]"
};
exports.executeMacro = function() {