Function: eww--list-buffers-display-table

eww--list-buffers-display-table is a byte-compiled function defined in eww.el.gz.

Signature

(eww--list-buffers-display-table &optional IGNORE-AUTO NOCONFIRM)

Documentation

Display a table with the list of eww buffers.

Will remove all buffer contents first. The parameters IGNORE-AUTO and NOCONFIRM are ignored, they are for compatibility with revert-buffer-function.

Source Code

;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww--list-buffers-display-table (&optional _ignore-auto _noconfirm)
  "Display a table with the list of eww buffers.
Will remove all buffer contents first.  The parameters IGNORE-AUTO and
NOCONFIRM are ignored, they are for compatibility with
`revert-buffer-function'."
  (let ((inhibit-read-only t))
    (erase-buffer)
    (make-vtable
     :columns '((:name "Title" :min-width "25%" :max-width "50%")
                (:name "URL"))
     :objects-function #'eww--list-buffers-get-data
     ;; use fixed-font face
     :face 'default)))