diff options
author | Case Duckworth | 2021-07-22 21:14:34 -0500 |
---|---|---|
committer | Case Duckworth | 2021-07-22 21:14:34 -0500 |
commit | 6964c20b29b6040bd3dd4294f55f9b34c6879c92 (patch) | |
tree | 69355065d74f4d3e66cedada6d23e7501f91d5f6 | |
parent | Change fonts on Windows (diff) | |
download | emacs-6964c20b29b6040bd3dd4294f55f9b34c6879c92.tar.gz emacs-6964c20b29b6040bd3dd4294f55f9b34c6879c92.zip |
Fix browse-url-browser-function setting
-rw-r--r-- | init.el | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/init.el b/init.el index e47901f..1cb4e5b 100644 --- a/init.el +++ b/init.el | |||
@@ -126,10 +126,13 @@ | |||
126 | (set-default (if (version<= emacs-version "28") | 126 | (set-default (if (version<= emacs-version "28") |
127 | 'browse-url-browser-function | 127 | 'browse-url-browser-function |
128 | 'browse-url-handlers) | 128 | 'browse-url-handlers) |
129 | `(,(when (executable-find "feh") | 129 | `(("\\.jpe?g\\'" . ,(if (executable-find "feh") |
130 | '("\\.jpe?g\\'" . browse-url-feh)) | 130 | 'browse-url-feh |
131 | ,(when (executable-find "mpv") | 131 | 'eww-browse-url)) |
132 | '("youtube\\.com\\|youtu\\.be" . browse-url-mpv)) | 132 | ("youtube\\.com\\|youtu\\.be" . ,(if (executable-find "mpv") |
133 | 'browse-url-mpv | ||
134 | 'eww-browse-url)) | ||
135 | ("google\\.com" . browse-url-default-browser) | ||
133 | ("." . eww-browse-url))) | 136 | ("." . eww-browse-url))) |
134 | 137 | ||
135 | ;; Buttonize gemini:// links. | 138 | ;; Buttonize gemini:// links. |