From: Martin Carlson Date: Tue, 31 Aug 2021 10:24:34 +0000 (+0200) Subject: Add variable to withhold the init req process id X-Git-Tag: emacs-29.0.90~1616^2~524^2~4^2~107 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=512d8b9f590df3b553526bffb7b39ee4f0cd76e9;p=emacs.git Add variable to withhold the init req process id * eglot.el (eglot-withhold-process-id): New defvar. (eglot--connect): Don't send pid to language server if above new defvar has a non-nil value. Copyright-paperwork-exempt: Yes GitHub-reference: fix https://github.com/joaotavora/eglot/issues/722 --- diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index e1eb9ed4ced..712ad172985 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -295,6 +295,10 @@ let the buffer grow forever." "If non-nil, activate Eglot in cross-referenced non-project files." :type 'boolean) +(defvar eglot-withhold-process-id nil + "If non-nil, Eglot will not send the Emacs process id to the language server. +This can be useful when using docker to run a language server.") + ;; Customizable via `completion-category-overrides'. (when (assoc 'flex completion-styles-alist) (add-to-list 'completion-category-defaults '(eglot (styles flex basic)))) @@ -1110,7 +1114,8 @@ This docstring appeases checkdoc, that's all." server :initialize (list :processId - (unless (or (file-remote-p default-directory) + (unless (or eglot-withhold-process-id + (file-remote-p default-directory) (eq (jsonrpc-process-type server) 'network)) (emacs-pid))