From 18eb710c34c52725e857a891f191eeefa1d62bf9 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Sun, 14 Sep 2025 11:28:42 -0400 Subject: [PATCH] refactor(python): remove mspyls config mspyls is no longer maintained or used, so remove vestigial config for it. --- modules/lang/python/config.el | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/modules/lang/python/config.el b/modules/lang/python/config.el index 6a1822f73..a0c0c0603 100644 --- a/modules/lang/python/config.el +++ b/modules/lang/python/config.el @@ -33,10 +33,7 @@ (when (modulep! +lsp) (add-hook 'python-mode-local-vars-hook #'lsp! 'append) - (add-hook 'python-ts-mode-local-vars-hook #'lsp! 'append) - ;; Use "mspyls" in eglot if in PATH - (when (executable-find "Microsoft.Python.LanguageServer") - (set-eglot-client! '(python-mode python-ts-mode) '("Microsoft.Python.LanguageServer")))) + (add-hook 'python-ts-mode-local-vars-hook #'lsp! 'append)) (set-repl-handler! '(python-mode python-ts-mode) #'+python/open-repl :persist t