Re: EWW with Duck-Duck-Go

Michael Heerdegen via Users list for the GNU Emacs text editor <[email protected]> Sun, 31 May 2026 17:03:44 +0200
Newsgroups gmane.emacs.help
Message-ID <[email protected]>
gfp <[email protected]> writes:

> this works now, no backtrace:
>
> (with-eval-after-load 'eww
>     (progn
>       (add-to-list 'eww-readable-urls "www\\.mojeek\\.com")
>       (setopt eww-search-prefix "https://www.mojeek.com/search?q=")
>     ))

Ok, perfect.

You can even omit the `progn' wrapper:

#+begin_src emacs-lisp
(with-eval-after-load 'eww
  (add-to-list 'eww-readable-urls "www\\.mojeek\\.com")
  (setopt eww-search-prefix "https://www.mojeek.com/search?q="))
#+end_src


Michael.