Variable: goto-address-uri-schemes-ignored

goto-address-uri-schemes-ignored is a variable defined in goto-addr.el.gz.

Value

("mailto:" "data:")

Documentation

List of URI schemes to exclude from goto-address-uri-schemes.

Customizations to this variable made after goto-addr is loaded will have no effect.

Probably introduced at or before Emacs version 27.1.

Source Code

;; Defined in /usr/src/emacs/lisp/net/goto-addr.el.gz
(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'.

Customizations to this variable made after goto-addr is loaded
will have no effect.")