GNU bug report logs -
#60557
[PATCH] Fix eglot prompt when connection already exists
Previous Next
Full log
View this message in rfc822 format
[CC-ing João Távora, author of eglot]
This patch fixes an incorrect behavior of eglot. To reproduce:
- run M-x eglot
- run M-x eglot (again)
- eglot now prompts whether to reconnect to the existing LSP
- enter "n" (for no)
- now eglot shuts down the LSP process and reconnects - this is not
correct, the expected behavior is to not reconnect
The patch is below.
commit f7626c070d4bd63fab1df33153ab9deaec0a3f7b (HEAD -> master)
Author: Evgeni Kolev <evgenysw <at> gmail.com>
Date: Wed Jan 4 17:36:30 2023 +0200
Fix eglot prompt when connection already exists
When M-x eglot is executed twice, the second time it prompts whether
to reconnect. Answering "no" was not working correctly - the existing
LSP process was still reconnected.
This behavior is fixed, answering "no" results in keeping the existing
connection.
diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el
index 6d192d9b333..7ac123f3c09 100644
--- a/lisp/progmodes/eglot.el
+++ b/lisp/progmodes/eglot.el
@@ -1116,10 +1116,9 @@ eglot
(setq managed-major-mode (eglot--ensure-list managed-major-mode))
(let* ((current-server (eglot-current-server))
(live-p (and current-server (jsonrpc-running-p current-server))))
- (if (and live-p
- interactive
- (y-or-n-p "[eglot] Live process found, reconnect instead? "))
- (eglot-reconnect current-server interactive)
+ (if (and live-p interactive)
+ (when (y-or-n-p "[eglot] Live process found, reconnect instead? ")
+ (eglot-reconnect current-server interactive))
(when live-p (ignore-errors (eglot-shutdown current-server)))
(eglot--connect managed-major-mode project class contact language-id))))
This bug report was last modified 2 years and 125 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.