What would the difference be between skipping something and completely removing it here? Also you need to have the remove part before the before or after operator because they work from left to right and if the next tiddler would have priority -1 and then you remove the priority -1 tiddlers nothing is returned.
<$list filter='[is[current]tags[]]' variable=CurrentTag> <$tiddler tiddler=<<CurrentTag>>><<tag>></$tiddler> - <$button>Previous<$list variable=PreviousTiddler filter='[tag<CurrentTag> !priority[-1]nsort[order]before<currentTiddler>]'><$action-navigate $to=< <PreviousTiddler>>/></$list></$button><$button>Next<$list variable=NextTiddler filter='[tag<CurrentTag>!priority[-1]nsort[order]after <currentTiddler>]'><$action-navigate $to=<<NextTiddler>>/></$list></$button> </$list> will skip tiddlers that have -1 in their priority field. -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/tiddlywiki. To view this discussion on the web visit https://groups.google.com/d/msgid/tiddlywiki/82424b39-3d86-4454-aa2a-b1369c33f51e%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.

