Function: xwidget-webkit-browse-history
xwidget-webkit-browse-history is an interactive and byte-compiled
function defined in xwidget.el.gz.
Signature
(xwidget-webkit-browse-history)
Documentation
Display a buffer containing the history of page loads.
Probably introduced at or before Emacs version 29.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/xwidget.el.gz
(defun xwidget-webkit-browse-history ()
"Display a buffer containing the history of page loads."
(interactive)
(setq xwidget-webkit-last-session-buffer (current-buffer))
(let ((buffer (get-buffer-create "*Xwidget WebKit History*")))
(with-current-buffer buffer
(xwidget-webkit-history-mode))
(display-buffer buffer)))