From: Étienne Deparis Date: Mon, 28 Jun 2021 17:01:27 +0000 (+0200) Subject: Support elpher in mu4e X-Git-Tag: bookmarks~15 X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=elpher.git;a=commitdiff_plain;h=dbc47ac2e135a0220ebe2f208f37843d89881f7c Support elpher in mu4e --- diff --git a/elpher.el b/elpher.el index f0770de..8a420e1 100644 --- a/elpher.el +++ b/elpher.el @@ -1782,8 +1782,7 @@ If ADDRESS is already bookmarked, update the label only." ;; Avoid byte compilation warnings. (eval-when-compile (declare-function org-link-store-props "ol") - (declare-function org-link-set-parameters "ol") - (defvar thing-at-point-uri-schemes)) + (declare-function org-link-set-parameters "ol")) (defun elpher-org-link-store () "Store link to an `elpher' page in `org'." @@ -1822,10 +1821,20 @@ If ADDRESS is already bookmarked, update the label only." 'browse-url-default-handlers '("^\\(gopher\\|finger\\|gemini\\)://" . elpher-browse-url-elpher))) +;; Avoid byte compilation warnings. +(eval-when-compile + (defvar thing-at-point-uri-schemes) + (defvar mu4e~view-beginning-of-url-regexp)) + ;; Register "gemini://" as a URI scheme so `browse-url' does the right thing (with-eval-after-load 'thingatpt (add-to-list 'thing-at-point-uri-schemes "gemini://")) +(with-eval-after-load 'mu4e-view + ;; Make mu4e aware of the gemini world + (setq mu4e~view-beginning-of-url-regexp + "\\(?:https?\\|gopher\\|finger\\|gemini\\)://\\|mailto:")) + ;;; Interactive procedures ;;