Function: browse-url-chromium
browse-url-chromium is an autoloaded, interactive and byte-compiled
function defined in browse-url.el.gz.
Signature
(browse-url-chromium URL &optional NEW-WINDOW)
Documentation
Ask the Chromium WWW browser to load URL.
Default to the URL around or before point. Invokes the program
specified by browse-url-chromium-program. Passes the strings in
variable browse-url-chromium-arguments to that program.
The optional argument NEW-WINDOW is not used.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/browse-url.el.gz
;;;###autoload
(defun browse-url-chromium (url &optional _new-window)
"Ask the Chromium WWW browser to load URL.
Default to the URL around or before point. Invokes the program
specified by `browse-url-chromium-program'. Passes the strings in
variable `browse-url-chromium-arguments' to that program.
The optional argument NEW-WINDOW is not used."
(interactive (browse-url-interactive-arg "URL: "))
(setq url (browse-url-encode-url url))
(let* ((process-environment (browse-url-process-environment)))
(apply #'start-process
(concat "chromium " url) nil
browse-url-chromium-program
(append
browse-url-chromium-arguments
(list url)))))