-
Currently if I type on the browser address bar, it allows me to do these two
How can I do a new search rather than matching against part URL and Title? I am looking at ideas on workflow on how to achieve it. I already have a separate function which can do internet searches for me, but rather than switching between |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
If I understand it right, you want to open the popup, start typing something, and if it finds something in the browser history - great, if not, you want to issue a google search? What you are looking for can be done via using Embark-become. However, browser-hist.el doesn't out of the box provide easy way to hook into that, at least I don't know a trivial way to achieve it easily. IMO, for that to work we need to make the command Consult-compatible, which @karthink and I discussed here and here. Basically, you'd call There are some other benefits to make the command Consult-compatible. Hopefully one day I'll get some bandwidth and make that happen. But if you're asking for a predictive search-like thing, that like Copilot tries to autocomplete URLs (that don't exist in the browser history) based on partial query as you type - that would be a completely different kind of conversation, and I'm not sure it would be even within the scope of this package. |
Beta Was this translation helpful? Give feedback.
If I understand it right, you want to open the popup, start typing something, and if it finds something in the browser history - great, if not, you want to issue a google search?
What you are looking for can be done via using Embark-become. However, browser-hist.el doesn't out of the box provide easy way to hook into that, at least I don't know a trivial way to achieve it easily. IMO, for that to work we need to make the command Consult-compatible, which @karthink and I discussed here and here.
Basically, you'd call
browser-hist-search
, then start typing, then pressembark-become
key, that maybe allows you to pass the query to engine-mode command (for example).engine-mode.el
is a package…