You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the emote autocomplete popup is sorted alphabetically form the top down, and is case sensitive. When the default selection was moved to the bottom in 40f4cc7 the sort order was not reversed and made the incorrect sort order much more noticeable.
Given the autocomplete input of :pog the list from top to bottom is
POGGERS
Pog
PogChamp
peepogun
with the last item being selected. The correct order should be reversed, sorted ignoring case, and the shortest at the bottom:
POGGERS
PogChamp
Pog
peepogun
Additionally, if an option matches the input exactly (eg, :pog matches Pog in the list) that should be selected even though peepogun contains the input and would normally be the default selection.
The text was updated successfully, but these errors were encountered:
Currently, the emote autocomplete popup is sorted alphabetically form the top down, and is case sensitive. When the default selection was moved to the bottom in 40f4cc7 the sort order was not reversed and made the incorrect sort order much more noticeable.
Given the autocomplete input of
:pog
the list from top to bottom iswith the last item being selected. The correct order should be reversed, sorted ignoring case, and the shortest at the bottom:
Additionally, if an option matches the input exactly (eg,
:pog
matchesPog
in the list) that should be selected even thoughpeepogun
contains the input and would normally be the default selection.The text was updated successfully, but these errors were encountered: