Variable: Info-link-keymap
Info-link-keymap is a variable defined in info.el.gz.
Value
<follow-link> mouse-face
<header-line> <down-mouse-1> mouse-drag-header-line
<header-line> <mouse-1> Info-mouse-follow-link
<header-line> <mouse-2> Info-mouse-follow-link
<mouse-2> Info-mouse-follow-link
Documentation
Keymap to put on Info links.
This is used for the "Next", "Prev", and "Up" links in the first line or header line, and for breadcrumb links.
Source Code
;; Defined in /usr/src/emacs/lisp/info.el.gz
(defvar-keymap Info-link-keymap
:doc "Keymap to put on Info links.
This is used for the \"Next\", \"Prev\", and \"Up\" links in the
first line or header line, and for breadcrumb links."
"<header-line> <down-mouse-1>" #'mouse-drag-header-line
"<header-line> <mouse-1>" #'Info-mouse-follow-link
"<header-line> <mouse-2>" #'Info-mouse-follow-link
"<mouse-2>" #'Info-mouse-follow-link
"<follow-link>" 'mouse-face)