Function: eww-list-bookmarks

eww-list-bookmarks is an autoloaded, interactive and byte-compiled function defined in eww.el.gz.

Signature

(eww-list-bookmarks &optional BUILD-ONLY)

Documentation

Display the eww bookmarks.

Optional argument BUILD-ONLY, when non-nil, means to build the buffer without popping it.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
;;;###autoload
(defun eww-list-bookmarks (&optional build-only)
  "Display the eww bookmarks.
Optional argument BUILD-ONLY, when non-nil, means to build the buffer
without popping it."
  (interactive)
  (eww-read-bookmarks t)
  (with-current-buffer (get-buffer-create "*eww bookmarks*")
    (eww-bookmark-mode)
    (eww--bookmark-prepare))
  (unless build-only
    (pop-to-buffer "*eww bookmarks*")))