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
Would like to have a way to decide on the fly whether the first filtered item should be highlighted.
Currently we accomplish this via a bun patched version of the Combobox where autoHighlight accepts a function like (item) => boolean
Screen.Recording.2026-07-10.at.18.18.49.mov
In Paper this is so that if you are typing in a value into the input, we highlight theme tokens only for exact matches, otherwise the value is treated like normal text.
For the user it means that if they type "1" and press Enter they wouldn't get a token for "12", but if they type in "12" and a matching token exists, that one is selected on Enter.
Feature request
Would like to have a way to decide on the fly whether the first filtered item should be highlighted.
Currently we accomplish this via a bun patched version of the Combobox where
autoHighlightaccepts a function like(item) => booleanScreen.Recording.2026-07-10.at.18.18.49.mov
In Paper this is so that if you are typing in a value into the input, we highlight theme tokens only for exact matches, otherwise the value is treated like normal text.
For the user it means that if they type "1" and press Enter they wouldn't get a token for "12", but if they type in "12" and a matching token exists, that one is selected on Enter.