We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead of using LIKE, use some sort of better fuzzy search like sqlite's full text or fzf.
LIKE
The text was updated successfully, but these errors were encountered:
Hi, just came across this extension and it's awesome!!!
Wanted to follow-up to see if any progress had been attempted on fuzzy search?
Sorry, something went wrong.
Modifying the order of the column to this would give more useful result - ORDER BY last_visit_time DESC, typed_count DESC, visit_count DESC https://github.com/tupton/alfred-chrome-history/blob/master/chrome.py#L58. Existing chrome history search also return result in this order.
One easy improvement is to search for each word separately rather than for the whole string (this is how tupton's safari history plugin works)
In history_results (chrome.py), change q = u'%{}%'.format(query) to q = u'%{}%'.format('%'.join(query.split(' ')))
history_results
q = u'%{}%'.format(query)
q = u'%{}%'.format('%'.join(query.split(' ')))
No branches or pull requests
Instead of using
LIKE
, use some sort of better fuzzy search like sqlite's full text or fzf.The text was updated successfully, but these errors were encountered: