Function: eww-copy-page-url
eww-copy-page-url is an interactive and byte-compiled function defined
in eww.el.gz.
Signature
(eww-copy-page-url)
Documentation
Copy the URL of the current page into the kill ring.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww-copy-page-url ()
"Copy the URL of the current page into the kill ring."
(interactive nil eww-mode)
(message "%s" (plist-get eww-data :url))
(kill-new (plist-get eww-data :url)))