Function: eww-bookmark-browse

eww-bookmark-browse is an interactive and byte-compiled function defined in eww.el.gz.

Signature

(eww-bookmark-browse)

Documentation

Browse the bookmark under point in eww.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww-bookmark-browse ()
  "Browse the bookmark under point in eww."
  (interactive nil eww-bookmark-mode)
  (let ((bookmark-at-point (nth 3 (vtable-current-object))))
    (unless bookmark-at-point
      (user-error "No bookmark on the current line"))
    (quit-window)
    (eww-browse-url (plist-get bookmark-at-point :url))))