]> git.eshelyaron.com Git - emacs.git/commitdiff
; Eglot: improve bug-reference-url-format/bug-reference-url-regexp
authorJoão Távora <joaotavora@gmail.com>
Wed, 1 Mar 2023 13:24:07 +0000 (13:24 +0000)
committerJoão Távora <joaotavora@gmail.com>
Wed, 1 Mar 2023 13:27:06 +0000 (13:27 +0000)
* lisp/progmodes/eglot.el (eglot--debbugs-or-github-bug-uri): New helper.

lisp/progmodes/eglot.el

index 119b4f64c8dceda15c68a9da4c0e548037a362a1..36aafac89385264a0706d13840690f60c8b1eeb7 100644 (file)
@@ -3661,6 +3661,15 @@ If NOERROR, return predicate, else erroring function."
 (with-eval-after-load 'desktop
   (add-to-list 'desktop-minor-mode-handlers '(eglot--managed-mode . ignore)))
 
+\f
+;;; Misc
+;;;
+(defun eglot--debbugs-or-github-bug-uri ()
+  (format (if (string= (match-string 2) "github")
+              "https://github.com/joaotavora/eglot/issues/%s"
+            "https://debbugs.gnu.org/%s")
+          (match-string 3)))
+(put 'eglot--debbugs-or-github-bug-uri 'bug-reference-url-format t)
 \f
 ;;; Obsolete
 ;;;
@@ -3671,8 +3680,8 @@ If NOERROR, return predicate, else erroring function."
 
 
 ;; Local Variables:
-;; bug-reference-bug-regexp: "\\(github#\\([0-9]+\\)\\)"
-;; bug-reference-url-format: "https://github.com/joaotavora/eglot/issues/%s"
+;; bug-reference-bug-regexp: "\\(\\(github\\|bug\\)#\\([0-9]+\\)\\)"
+;; bug-reference-url-format: eglot--debbugs-or-github-bug-uri
 ;; checkdoc-force-docstrings-flag: nil
 ;; End: