Function: xwidget-webkit-clone-and-split-below

xwidget-webkit-clone-and-split-below is an interactive and byte-compiled function defined in xwidget.el.gz.

Signature

(xwidget-webkit-clone-and-split-below)

Documentation

Clone current URL into a new widget place in new window below.

Get the URL of current session, then browse to the URL in split-window-below 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-below ()
  "Clone current URL into a new widget place in new window below.
Get the URL of current session, then browse to the URL
in `split-window-below' with a new xwidget webkit session."
  (interactive nil xwidget-webkit-mode)
  (let ((url (xwidget-webkit-uri (xwidget-webkit-current-session))))
    (with-selected-window (split-window-below)
      (xwidget-webkit-new-session url))))