Function: eglot-list-connections-mode

eglot-list-connections-mode is a byte-compiled function defined in eglot.el.gz.

Signature

(eglot-list-connections-mode)

Documentation

Eglot mode for listing server connections.

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

In addition to any hooks its parent mode tabulated-list-mode might have run, this mode runs the hook eglot-list-connections-mode-hook, as the final or penultimate step during initialization.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(define-derived-mode eglot-list-connections-mode  tabulated-list-mode
  "" "Eglot mode for listing server connections.
\\{eglot-list-connections-mode-map}"
  :interactive nil
  (setq-local tabulated-list-format
              `[("Language server" 16) ("Project name" 20) ("Buffers" 7)
                ("Modes" 20) ("Invocation" 32)])
  (tabulated-list-init-header))