Variable: eglot-diagnostics-map

eglot-diagnostics-map is a variable defined in eglot.el.gz.

Value

<left-margin> <mouse-1>  eglot-code-actions-at-mouse
<mouse-2>                eglot-code-actions-at-mouse

Documentation

Keymap active in Eglot-backed Flymake diagnostic overlays.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(defvar eglot-diagnostics-map
  (let ((map (make-sparse-keymap)))
    (define-key map [mouse-2] #'eglot-code-actions-at-mouse)
    (define-key map [left-margin mouse-1] #'eglot-code-actions-at-mouse)
    map)
  "Keymap active in Eglot-backed Flymake diagnostic overlays.")