Variable: goto-address-uri-schemes

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

Value

("aaa://" "about:" "acap://" "apt:" "bzr://" "bzr+ssh://"
 "attachment:/" "chrome://" "cid:" "content://" "crid://" "cvs://"
 "dav:" "dict://" "doi:" "dns:" "dtn:" "feed:" "file:/" "finger://"
 "fish://" "ftp://" "geo:" "git://" "go:" "gopher://" "h323:"
 "http://" "https://" "im:" "imap://" "info:" "ipp:" "irc://"
 "irc6://" "ircs://" "iris.beep:" "jar:" "ldap://" "ldaps://"
 "magnet:" "mid:" "mtqp://" "mupdate://" "news:" "nfs://" "nntp://"
 "opaquelocktoken:" "pop://" "pres:" "resource://" "rmi://" "rsync://"
 "rtsp://" "rtspu://" "service:" "sftp://" "sip:" "sips:" "smb://"
 "sms:" "snmp://" "soap.beep://" "soap.beeps://" "ssh://" "svn://"
 "svn+ssh://" "tag:" "tel:" "telnet://" "tftp://" "tip://" "tn3270://"
 "udp://" "urn:" "uuid:" "vemmi://" "webcal://" "xri://"
 "xmlrpc.beep://" "xmlrpc.beeps://" "z39.50r://" "z39.50s://" "xmpp:"
 "gemini://" "fax:" "man:" "mms://" "mmsh://" "modem:" "prospero:"
 "snews:" "wais://")

Documentation

List of URI schemes matched by goto-address-url-regexp.

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

Source Code

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

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