Variable: eglot-list-connections-mode-map

eglot-list-connections-mode-map is a variable defined in eglot.el.gz.

Value

RET  eglot-describe-listed-connection
e    eglot-events-buffer-of-listed-connection
k    eglot-shutdown-listed-connection
r    eglot-reconnect-listed-connection
w    eglot-show-workspace-configuration-of-listed-connection

Documentation

Keymap for eglot-list-connections-mode.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
;;; List connections mode

(defvar eglot-list-connections-mode-map
  (let ((map (make-sparse-keymap)))
    (define-key map "k"           #'eglot-shutdown-listed-connection)
    (define-key map "r"           #'eglot-reconnect-listed-connection)
    (define-key map "e"           #'eglot-events-buffer-of-listed-connection)
    (define-key map "w"           #'eglot-show-workspace-configuration-of-listed-connection)
    (define-key map (kbd "RET")   #'eglot-describe-listed-connection)
    map)
  "Keymap for `eglot-list-connections-mode'.")