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.

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
;;; List connections mode

(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" 16) ("Modes handled" 16)])
  (tabulated-list-init-header))