home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit f9b86f3c6513748aeb76fe82c0f4c6246aeb7614
parent 6cc9ac71f34da2474a9014f6305b63dc884ecf93
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Thu, 24 Jun 2021 15:47:12 +0200

emacs: open redhat* pages with google chrome (work)

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mtools/emacs/config/config-web.el | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/tools/emacs/config/config-web.el b/tools/emacs/config/config-web.el @@ -73,8 +73,11 @@ defined keys follow the pattern of <PREFIX> <KEY>.") (use-package browse-url :after eww :config + (setq browse-url-generic-program "google-chrome-stable") (setq browse-url-browser-function '(("^https://github.com.*" . browse-url-firefox) ("^https://gitlab.com.*" . browse-url-firefox) + ("^https://issues.redhat.com.*" . browse-url-generic) + ("^https://.*redhat.com.*" . browse-url-generic) (".*" . eww-browse-url)))) (provide 'config-web)