From 871e423df092018e4bc652d6d0cd291135f8fbc3 Mon Sep 17 00:00:00 2001 From: ziggy <8505044+aepyornis@users.noreply.github.com> Date: Wed, 28 Feb 2024 15:12:53 -0500 Subject: [PATCH] Set ltex server type to tcpsocket (#10) --- 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)))