Function: eww--bookmark-prepare

eww--bookmark-prepare is a byte-compiled function defined in eww.el.gz.

Signature

(eww--bookmark-prepare)

Documentation

Display a table with the list of eww bookmarks.

Will remove all buffer contents first.

Source Code

;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww--bookmark-prepare ()
  "Display a table with the list of eww bookmarks.
Will remove all buffer contents first."
  (let ((inhibit-read-only t))
    (erase-buffer)
    (make-vtable
     :columns '((:name "Order" :min-width 6)
                (:name "Title" :min-width "25%" :max-width "50%")
                (:name "URL"))
     :objects-function #'eww--bookmark-format-data
     ;; use fixed-font face
     :face 'default
     :sort-by '((0 . ascend))
     )))