Conversation
The tags on a tiddler keep the order they were added in, and both that and the order of wiki wide tag lists can be changed. * Return tags from the tags operator in the order they appear on the tiddler, instead of hoisting any tag that looks like a whole number * Stop action-listops rewriting the whole tags field alphabetically when it adds or removes a tag * Add $:/config/Tags/SortFilter and $:/config/Tags/GlobalSortFilter, each a filter run applied to a list of tags, with a Control Panel setting * Ignore a filter that changes the number of tags in the tiddler editor and in the manager, so hiding a tag cannot hide one you need to remove * Report in Wiki Information whether a custom filter is in use, without capturing the filter itself * Document the settings in Customising tag order
Lists that show every tag in the wiki keep their alphabetical order and are not configurable. * Drop $:/config/Tags/GlobalSortFilter and restore the sort on AllTags, SystemTags, the tag manager and the manager tag selector * Narrow the Control Panel setting and the Wiki Information report to the remaining per tiddler setting * Update Customising tag order to match
Choosing a preset no longer discards a custom filter, and the radios follow the setting when it is changed outside the Control Panel. * Put a custom filter aside in $:/config/Tags/SortFilter/backup before a preset overwrites it, and read it back when custom is chosen again * Select the radio from the filter itself, so editing or deleting the setting moves it. The mode tiddler now records only the custom choice, and the presets delete it again * Delete $:/config/Tags/SortFilter when "Do not sort" is chosen, rather than leaving it behind holding an empty value
Let $:/config/Tags/SortFilter alone decide which Tag Sorting option is selected. * Remove $:/config/Tags/SortMode, which could fall out of step and pin the selection * Write the radio choice to a scratch mode field, because $radio sets its value before running its actions and would otherwise destroy the custom filter * Add TagOrderExample and link it from Customising tag order
Let a tag pill be dragged to a new position while the tags are unsorted. * Wrap each pill in a droppable and a draggable, with a drop zone past the last one * Enable it only while $:/config/Tags/SortFilter holds no filter, which would put a dropped pill straight back * Ignore a title dragged in from elsewhere: this reorders, not adds * Make the drop marker inline, the pills being a row not a column
✅ Deploy Preview for tiddlywiki-previews ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
Confirmed: pmario has already signed the Contributor License Agreement (see contributing.md) |
📊 Build Size Comparison:
|
| Branch | Size |
|---|---|
| Base (master) | 2493.7 KB |
| PR | 2503.1 KB |
Diff: ⬆️ Increase: +9.4 KB
✅ Change Note Status
All change notes are properly formatted and validated!
📝 $:/changenotes/5.5.0/#9994
Type: feature | Category: usability
Release: 5.5.0
The tags on a tiddler keep the order you added them in, and tag order is configurable
🔗 #9994
👥 Contributors: pmario
📖 Change Note Guidelines
Change notes help track and communicate changes effectively. See the full documentation for details.
pmario
force-pushed
the
tags-operator-order
branch
from
August 26, 2026 11:51
edca76d to
bf00c3b
Compare
This branch has not been deployed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Show a tiddler's tags in the order they were added, and let that order be chosen
under Control Panel > Settings > Tag Sorting. Closes #8228.
[tags[]]in the order they appear on the tiddler. One thatlooks like a whole number was returned first
<$action-listops>rewriting the wholetagsfield alphabetically[sort[]]isalphabetical, anything else is the user's own filter run
so a filter cannot hide a tag you need to remove
A Control Panel panel rather than the hidden setting suggested in the issue,
since it needs three choices and a filter box.