Function: eglot--server-buffer-name

eglot--server-buffer-name is a byte-compiled function defined in eglot.el.gz.

Signature

(eglot--server-buffer-name SERVER &optional SUFFIX)

Documentation

Standard buffer name for SERVER with optional SUFFIX.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/eglot.el.gz
(defun eglot--server-buffer-name (server &optional suffix)
  "Standard buffer name for SERVER with optional SUFFIX."
  (format "*EGLOT (%s/%s)%s*"
          (eglot-project-nickname server)
          (eglot--server-name server)
          (if suffix (concat " " suffix) "")))