all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#67442: [PATCH] eglot: Add ruff-lsp as an alternative python server
@ 2023-11-24 22:42 Niall Dooley
  2023-11-25  9:19 ` Eli Zaretskii
  2023-11-25 11:09 ` Eli Zaretskii
  0 siblings, 2 replies; 8+ messages in thread
From: Niall Dooley @ 2023-11-24 22:42 UTC (permalink / raw)
  To: 67442

[-- Attachment #1: Type: text/plain, Size: 1416 bytes --]

ruff-lsp [1] is a Language Server Protocol implementation for Ruff [2,
3], an extremely fast Python linter and code formatter, written in
Rust.

It supports surfacing Ruff diagnostics and providing Code Actions to
fix them, but is intended to be used alongside another Python LSP in
order to support features like navigation and autocompletion.

[1]: https://github.com/astral-sh/ruff-lsp
[2]: https://github.com/astral-sh/ruff
[3]: https://docs.astral.sh/ruff/
---
 lisp/progmodes/eglot.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el
index 48ea33c3ee1..d7d91bddb01 100644
--- a/lisp/progmodes/eglot.el
+++ b/lisp/progmodes/eglot.el
@@ -216,7 +216,7 @@ eglot-server-programs
                                 (vimrc-mode . ("vim-language-server"
"--stdio"))
                                 ((python-mode python-ts-mode)
                                  . ,(eglot-alternatives
-                                     '("pylsp" "pyls"
("pyright-langserver" "--stdio") "jedi-language-server")))
+                                     '("pylsp" "pyls"
("pyright-langserver" "--stdio") "jedi-language-server" "ruff-lsp")))
                                 ((js-json-mode json-mode json-ts-mode)
                                  . ,(eglot-alternatives
'(("vscode-json-language-server" "--stdio")

("vscode-json-languageserver" "--stdio")
-- 
2.30.2

[-- Attachment #2: 0001-eglot-Add-ruff-lsp-as-an-alternative-python-server.patch --]
[-- Type: text/x-patch, Size: 1693 bytes --]

From b1cfc2d980adb3f9963ab2c8607f4fa78e356a2d Mon Sep 17 00:00:00 2001
From: Niall Dooley <dooleyn@gmail.com>
Date: Fri, 24 Nov 2023 16:21:39 +0100
Subject: [PATCH] eglot: Add ruff-lsp as an alternative python server

ruff-lsp [1] is a Language Server Protocol implementation for Ruff [2,
3], an extremely fast Python linter and code formatter, written in
Rust.

It supports surfacing Ruff diagnostics and providing Code Actions to
fix them, but is intended to be used alongside another Python LSP in
order to support features like navigation and autocompletion.

[1]: https://github.com/astral-sh/ruff-lsp
[2]: https://github.com/astral-sh/ruff
[3]: https://docs.astral.sh/ruff/
---
 lisp/progmodes/eglot.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/progmodes/eglot.el b/lisp/progmodes/eglot.el
index 48ea33c3ee1..d7d91bddb01 100644
--- a/lisp/progmodes/eglot.el
+++ b/lisp/progmodes/eglot.el
@@ -216,7 +216,7 @@ eglot-server-programs
                                 (vimrc-mode . ("vim-language-server" "--stdio"))
                                 ((python-mode python-ts-mode)
                                  . ,(eglot-alternatives
-                                     '("pylsp" "pyls" ("pyright-langserver" "--stdio") "jedi-language-server")))
+                                     '("pylsp" "pyls" ("pyright-langserver" "--stdio") "jedi-language-server" "ruff-lsp")))
                                 ((js-json-mode json-mode json-ts-mode)
                                  . ,(eglot-alternatives '(("vscode-json-language-server" "--stdio")
                                                           ("vscode-json-languageserver" "--stdio")
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2023-11-27 10:22 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-24 22:42 bug#67442: [PATCH] eglot: Add ruff-lsp as an alternative python server Niall Dooley
2023-11-25  9:19 ` Eli Zaretskii
2023-11-25 11:09 ` Eli Zaretskii
2023-11-25 11:19   ` Niall Dooley
2023-11-25 12:39   ` João Távora
2023-11-25 13:00     ` Eli Zaretskii
2023-11-26  9:53       ` João Távora
2023-11-27 10:22         ` Niall Dooley

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.