-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
Firefox style search with * and ^ in the address box? #68
Comments
Found the secret |
Yeah, adding Would be keen to make Definitely room for improvement within Fauxbar's Options to explain such things better. |
Hi ChrisNZL, The following change works fine for me. Could you help integrate it into the repo and build a new release? diff --git a/Fauxbar/js/fauxbar-1.js b/Fauxbar/js/fauxbar-1.js
index 73115a1..7c4fc84 100755
--- a/Fauxbar/js/fauxbar-1.js
+++ b/Fauxbar/js/fauxbar-1.js
@@ -2555,7 +2555,7 @@ function getResults(noQuery) {
for (var w in words) {
if (words[w] != "") {
- if (words[w].toLowerCase() == 'is:fav') {
+ if (words[w] == '*' || words[w].toLowerCase() == 'is:fav') {
modifiers += ' AND type = 2 ';
}
else { |
Marking this issue for the upcoming 1.9 version. If you create a pull request, I can link it properly... But if not, your change above looks fine; I'll integrate it in due course. (Lately, have been slowly tackling the Manifest V3 refactor, so not really keen to push a new version live until that's done. But can apply your change as I go through the list) |
I'd not bother making a pull request. Just integrate it. We really need this feature. |
To take most advantage of Fauxbar I enabled both "Show results from history" and "Show results from bookmarks" but quite often I'd like it to search bookmarks only since there are usually too many entries in the browsing history. So can we make it behave like Firefox's address bar?
*<space>
then search bookmarks only^<space>
then search history onlyThe text was updated successfully, but these errors were encountered: