Function: xwidget-webkit-history-mode
xwidget-webkit-history-mode is an interactive and byte-compiled
function defined in xwidget.el.gz.
Signature
(xwidget-webkit-history-mode)
Documentation
Major mode for browsing the history of an Xwidget Webkit buffer.
Each line describes an entry in history.
In addition to any hooks its parent mode tabulated-list-mode might
have run, this mode runs the hook xwidget-webkit-history-mode-hook,
as the final or penultimate step during initialization.
RET xwidget-webkit-history-select-item
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/xwidget.el.gz
(define-derived-mode xwidget-webkit-history-mode tabulated-list-mode
"Xwidget Webkit History"
"Major mode for browsing the history of an Xwidget Webkit buffer.
Each line describes an entry in history."
(setq truncate-lines t)
(setq buffer-read-only t)
(setq tabulated-list-format [("Index" 10 nil)
("Title" 50 nil)
("URL" 100 nil)])
(setq tabulated-list-entries nil)
(setq xwidget-webkit-history--session (xwidget-webkit-current-session))
(xwidget-webkit-history-reload)
(setq-local revert-buffer-function #'xwidget-webkit-history-reload)
(tabulated-list-init-header))