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 Info-link-keymap
(let ((keymap (make-sparse-keymap)))
(define-key keymap [header-line down-mouse-1] 'mouse-drag-header-line)
(define-key keymap [header-line mouse-1] 'Info-mouse-follow-link)
(define-key keymap [header-line mouse-2] 'Info-mouse-follow-link)
(define-key keymap [mouse-2] 'Info-mouse-follow-link)
(define-key keymap [follow-link] 'mouse-face)
keymap)
"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.")