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 when displaying the list of clipboard items, it is possible to jump to a particular item by typing a unique prefix string. However there are a few possibilities which would significantly improve this feature:
Rather than just jumping the selection to the first prefix match, instantly filter out all non-matches after each keystroke
Highlight the matching part of the string in bold text and/or in a different colour.
Match by any substring, rather than just prefix.
Of course some people may not like all of those, in which case they could be made optional. But enabling all of those would bring the search in line with the UX for many popular IDEs and dev tools e.g. fzf.
The text was updated successfully, but these errors were encountered:
I agree the search function often leaves me frustrated, and I implemented it. :) That said, you are looking at a dialog so that presents challenges on 'filtering out non-matches' though I like the idea.
The highlight is not a bad idea either, and I really like the any sub-string, since that is exactly what frustrates me, and further this should be pretty low hanging fruit. That said, I have to re-write the whole thing in prep for GTK2 disappearing soon, so may efforts are focused on finding a replacement for GTK that doesn't suck and won't or can't change at the whim of a relatively small group of developers. sigh :)
Currently when displaying the list of clipboard items, it is possible to jump to a particular item by typing a unique prefix string. However there are a few possibilities which would significantly improve this feature:
Of course some people may not like all of those, in which case they could be made optional. But enabling all of those would bring the search in line with the UX for many popular IDEs and dev tools e.g. fzf.
The text was updated successfully, but these errors were encountered: