Function: xwidget-webkit-current-url
xwidget-webkit-current-url is an interactive and byte-compiled
function defined in xwidget.el.gz.
Signature
(xwidget-webkit-current-url)
Documentation
Display the current xwidget webkit URL and place it on the kill-ring.
Probably introduced at or before Emacs version 25.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/xwidget.el.gz
(defun xwidget-webkit-current-url ()
"Display the current xwidget webkit URL and place it on the `kill-ring'."
(interactive nil xwidget-webkit-mode)
(let ((url (xwidget-webkit-uri (xwidget-webkit-current-session))))
(when url (kill-new url))
(message "URL: %s" url)))