From e7bbb3a797e162d4c59352f550f443138ec00d33 Mon Sep 17 00:00:00 2001 From: ziggy Date: Wed, 28 Feb 2024 13:33:35 -0500 Subject: [PATCH] Set ltex server type to tcpsocket --- eglot-ltex.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eglot-ltex.el b/eglot-ltex.el index 79c08d5..8692421 100644 --- a/eglot-ltex.el +++ b/eglot-ltex.el @@ -78,7 +78,7 @@ This file is use to activate the language server." (defun eglot-ltex--server-command () "Generate startup command for LTEX language server." - (list (eglot-ltex--server-entry))) + (list (eglot-ltex--server-entry) "--server-type" "TcpSocket" "--port" :autoport)) (add-to-list 'eglot-server-programs `(,eglot-ltex-active-modes . ,(eglot-ltex--server-command)))