Variable: eww-suggest-uris

eww-suggest-uris is a customizable variable defined in eww.el.gz.

Value

(eww-links-at-point thing-at-point-url-at-point eww-current-url
		    eww-bookmark-urls)

Documentation

List of functions called to form the list of default URIs for eww.

Each of the elements is a function returning either a string or a list of strings. The results will be joined into a single list with duplicate entries (if any) removed.

This variable was added, or its default value changed, in Emacs 30.1.

Probably introduced at or before Emacs version 30.1.

Source Code

;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
;;;###autoload
(defcustom eww-suggest-uris
  '(eww-links-at-point
    thing-at-point-url-at-point
    eww-current-url
    eww-bookmark-urls)
  "List of functions called to form the list of default URIs for `eww'.
Each of the elements is a function returning either a string or a list
of strings.  The results will be joined into a single list with
duplicate entries (if any) removed."
  :version "30.1"
  :type 'hook
  :options '(eww-links-at-point
             thing-at-point-url-at-point
             eww-current-url
             eww-bookmark-urls))