Function: eww-browse-with-external-browser
eww-browse-with-external-browser is an interactive and byte-compiled
function defined in eww.el.gz.
Signature
(eww-browse-with-external-browser &optional URL)
Documentation
Browse the current URL with an external browser.
Use browse-url-secondary-browser-function if it is an external
browser, otherwise use browse-url-with-browser-kind to open an
external browser.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/eww.el.gz
(defun eww-browse-with-external-browser (&optional url)
"Browse the current URL with an external browser.
Use `browse-url-secondary-browser-function' if it is an external
browser, otherwise use `browse-url-with-browser-kind' to open an
external browser."
(interactive nil eww-mode)
(setq url (or url (plist-get eww-data :url)))
(if (eq 'external (browse-url--browser-kind
browse-url-secondary-browser-function url))
(funcall browse-url-secondary-browser-function url)
(browse-url-with-browser-kind 'external url)))