Currently, autocomplete appears to perform a prefix match on URLs for autocomplete (excluding certain prefixes such as 'www'). For instance, if I have the website https://ppopp23.hotcrp.com
open or in history, I can type ppopp2
(or any prefix of the url) into the searchbar to get:
However, if I type in hotcr
(or in fact any substring of hotcrp.org
), nothing shows up:
This contrasts with the behavior of matching for titles, which appears to be substring; e.g. "2023" (or any substring of) will match the title "PPoPP 2023" properly:
This is pretty annoying when trying to match websites that make heavy use of subdomains, such as Substack, most university websites, and reddit (since typing reddit
will not match urls at old.reddit.com
).
Suggestion: URL matching should be changed from existing prefix matching on the entire URL to one of these options:
- full substring matching, as is done for website titles, or
- prefix matching on every single parent subdomain for a website, i.e. in regex form, match
(^|\.)query
instead of^query
. For example, for the websiteabc.def.ghi.com
, search queries should be prefix-matched againstabc.def.ghi.com
,def.ghi.com
, andghi.com
. - some combination of the above (e.g. prefix matching as a higher priority than title title matching, which in turn is higher-priority than full substring matching)