mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2026-09-10 07:46:51 -04:00
browse-url-firefox-program: Add support for more Firefox variants.
* lisp/net/browse-url.el (browse-url-firefox-program): Add support for Floorp, LibreWolf and Zen Browser. (Bug#80398) * etc/NEWS: Announce the change.
This commit is contained in:
parent
9aebe411de
commit
6ba77ede06
6
etc/NEWS
6
etc/NEWS
|
|
@ -1648,6 +1648,12 @@ to visit URLs by typing just 'RET' instead of 'C-c RET' in read-only buffers.
|
|||
Conkeror (obsolete since Emacs 28.1), gnome-moz-remote (obsolete since
|
||||
Emacs 25.1), and gnudoit (obsolete since Emacs 25.1).
|
||||
|
||||
*** 'browse-url-firefox-program' now supports LibreWolf and Zen Browser.
|
||||
Occasionally, Emacs would not recognize LibreWolf as the system's
|
||||
default browser. This happens in solving this by adding LibreWolf and
|
||||
additionally Floorp and Zen Browser, two popular Firefox forks, to
|
||||
'browse-url-firefox-program'.
|
||||
|
||||
** CL-Lib
|
||||
|
||||
+++
|
||||
|
|
|
|||
|
|
@ -310,7 +310,12 @@ Defaults to the value of `browse-url-mozilla-arguments' at the time
|
|||
(or (car candidates) default))
|
||||
|
||||
(defcustom browse-url-firefox-program
|
||||
(browse-url--find-executable '("icecat" "iceweasel") "firefox")
|
||||
(browse-url--find-executable '("floorp"
|
||||
"icecat"
|
||||
"iceweasel"
|
||||
"librewolf"
|
||||
"zen")
|
||||
"firefox")
|
||||
"The name by which to invoke Firefox or a variant of it."
|
||||
:type 'string)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue