From 25bb55a63055e389f03289761fa8179b0420ab20 Mon Sep 17 00:00:00 2001 From: nibon7 Date: Tue, 26 Mar 2024 17:24:33 +0800 Subject: [PATCH] eglot: Add blueprint language server (Bug#70015) * lisp/progmodes/eglot.el (eglot-server-programs): Add blueprint-compiler. (cherry picked from commit d1d031aea69b3ab45034716048a2592fcbfd7358) --- lisp/progmodes/eglot.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el index 4da18845edc..bb915fb4a91 100644 --- a/lisp/progmodes/eglot.el +++ b/lisp/progmodes/eglot.el @@ -332,7 +332,8 @@ automatically)." ((uiua-ts-mode uiua-mode) . ("uiua" "lsp")) (sml-mode . ,(lambda (_interactive project) - (list "millet-ls" (project-root project))))) + (list "millet-ls" (project-root project)))) + ((blueprint-mode blueprint-ts-mode) . ("blueprint-compiler" "lsp"))) "How the command `eglot' guesses the server to start. An association list of (MAJOR-MODE . CONTACT) pairs. MAJOR-MODE identifies the buffers that are to be managed by a specific -- 2.39.5