Function: xwidget-webkit-clone-and-split-right
xwidget-webkit-clone-and-split-right is an interactive and
byte-compiled function defined in xwidget.el.gz.
Signature
(xwidget-webkit-clone-and-split-right)
Documentation
Clone current URL into a new widget place in new window right.
Get the URL of current session, then browse to the URL
in split-window-right with a new xwidget webkit session.
Probably introduced at or before Emacs version 28.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/xwidget.el.gz
(defun xwidget-webkit-clone-and-split-right ()
"Clone current URL into a new widget place in new window right.
Get the URL of current session, then browse to the URL
in `split-window-right' with a new xwidget webkit session."
(interactive nil xwidget-webkit-mode)
(let ((url (xwidget-webkit-current-url)))
(with-selected-window (split-window-right)
(xwidget-webkit-new-session url))))