Variable: goto-address-highlight-keymap

goto-address-highlight-keymap is a variable defined in goto-addr.el.gz.

Value

<mouse-2>  goto-address-at-point
C-c RET    goto-address-at-point

Documentation

Keymap to hold goto-addr's mouse key defs under highlighted URLs.

Probably introduced at or before Emacs version 31.1.

Source Code

;; Defined in /usr/src/emacs/lisp/net/goto-addr.el.gz
(defvar-keymap goto-address-highlight-keymap
  :doc "Keymap to hold goto-addr's mouse key defs under highlighted URLs."
  "<mouse-2>" #'goto-address-at-point
  "RET"       (keymap-read-only-bind #'goto-address-at-point)
  "C-c RET"   #'goto-address-at-point)