Variable: eglot-hierarchy-label-map

eglot-hierarchy-label-map is a variable defined in eglot.el.gz.

Value

<backtab>                         backward-button
<follow-link>                     mouse-face
<header-line> <mouse-2>           push-button
<header-line> <touchscreen-down>  push-button
<mode-line> <mouse-2>             push-button
<mode-line> <touchscreen-down>    push-button
<mouse-2>                         push-button
<mouse-3>                         #<anonymous-function>
<touchscreen-down>                push-button
C-M-i                             backward-button
RET                               push-button
TAB                               forward-button

Documentation

Keymap active in labels Eglot hierarchy buffers.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(defvar eglot-hierarchy-label-map
  (let ((map (make-sparse-keymap)))
    (set-keymap-parent map button-map)
    (define-key map [mouse-3] (eglot--mouse-call
                               #'eglot-hierarchy-center-on-node))
    map)
  "Keymap active in labels Eglot hierarchy buffers.")