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.

The browser to use is specified by the browse-url-secondary-browser-function variable.

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.
The browser to use is specified by the
`browse-url-secondary-browser-function' variable."
  (interactive nil eww-mode)
  (funcall browse-url-secondary-browser-function
           (or url (plist-get eww-data :url))))