emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master 9e81b22 1/2: Fix `goto-address-url-regexp'


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] master 9e81b22 1/2: Fix `goto-address-url-regexp'
Date: Tue, 25 Jun 2019 10:31:29 -0400 (EDT)

branch: master
commit 9e81b22113de41ba80df9c5a7aaf08a056180785
Author: Phil Sainty <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    Fix `goto-address-url-regexp'
    
    * lisp/net/goto-addr.el (goto-address-uri-schemes-ignored): New
    variable.
    (goto-address-uri-schemes): Ditto.
    (goto-address-url-regexp): Use them to compose the final regexp.
    
    * lisp/net/goto-addr.el: The URI schemes to be recognised by
    `goto-address-mode' were not regexp-quoted (Bug#23343).
---
 etc/NEWS              |  5 +++++
 lisp/net/goto-addr.el | 42 ++++++++++++++++++++++++++----------------
 2 files changed, 31 insertions(+), 16 deletions(-)

diff --git a/etc/NEWS b/etc/NEWS
index 101b7f5..eac7a7f 100644
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -475,6 +475,11 @@ current and the previous or the next line, as before.
 
 * Changes in Specialized Modes and Packages in Emacs 27.1
 
+** goto-addr
+*** A way to more conveniently specify what URI address schemes that
+should be ignored have been added via the
+`goto-address-uri-schemes-ignored' variable.
+
 ** tex-mode
 *** 'latex-noindent-commands' stops indenting arguments of \emph and friends
 
diff --git a/lisp/net/goto-addr.el b/lisp/net/goto-addr.el
index af2b836..eaa1356 100644
--- a/lisp/net/goto-addr.el
+++ b/lisp/net/goto-addr.el
@@ -59,6 +59,7 @@
 
 ;;; Code:
 
+(require 'seq)
 (require 'thingatpt)
 (autoload 'browse-url-url-at-point "browse-url")
 
@@ -101,23 +102,32 @@ A value of t means there is no limit--fontify regardless 
of the size."
   "[-a-zA-Z0-9=._+]+@\\([-a-zA-Z0-9_]+\\.\\)+[a-zA-Z0-9]+"
   "A regular expression probably matching an e-mail address.")
 
+(defvar goto-address-uri-schemes-ignored
+  ;; By default we exclude `mailto:' (email addresses are matched
+  ;; by `goto-address-mail-regexp') and also `data:', as it is not
+  ;; terribly useful to follow those URIs, and leaving them causes
+  ;; `use Data::Dumper;' to be fontified oddly in Perl files.
+  '("mailto:"; "data:")
+  "List of URI schemes to exclude from `goto-address-uri-schemes'.
+
+Customisations to this variable made after goto-addr is loaded
+will have no effect.")
+
+(defvar goto-address-uri-schemes
+  ;; We use `thing-at-point-uri-schemes', with a few exclusions,
+  ;; as listed in `goto-address-uri-schemes-ignored'.
+  (seq-reduce (lambda (accum elt) (delete elt accum))
+              goto-address-uri-schemes-ignored
+              (copy-sequence thing-at-point-uri-schemes))
+  "List of URI schemes matched by `goto-address-url-regexp'.
+
+Customisations to this variable made after goto-addr is loaded
+will have no effect.")
+
 (defvar goto-address-url-regexp
-  (concat
-   "\\<\\("
-   (mapconcat 'identity
-              (delete "mailto:";
-                     ;; Remove `data:', as it's not terribly useful to follow
-                     ;; those.  Leaving them causes `use Data::Dumper;' to be
-                     ;; fontified oddly in Perl files.
-                      (delete "data:"
-                              (copy-sequence thing-at-point-uri-schemes)))
-              "\\|")
-   "\\)"
-   thing-at-point-url-path-regexp)
-  ;; (concat "\\b\\(s?https?\\|ftp\\|file\\|gopher\\|news\\|"
-  ;;     "telnet\\|wais\\):\\(//[-a-zA-Z0-9_.]+:"
-  ;;     "[0-9]*\\)?[-a-zA-Z0-9_=?#$@~`%&*+|\\/.,]*"
-  ;;     "[-a-zA-Z0-9_=#$@~`%&*+|\\/]")
+  (concat "\\<"
+          (regexp-opt goto-address-uri-schemes t)
+          thing-at-point-url-path-regexp)
   "A regular expression probably matching a URL.")
 
 (defvar goto-address-highlight-keymap



reply via email to

[Prev in Thread] Current Thread [Next in Thread]