Add note about the breaking change in nvim-lspconfig (#12507) · astral-sh/ruff@c03f257 (original) (raw)

Original file line number Diff line number Diff line change
@@ -44,6 +44,11 @@ require('lspconfig').ruff.setup({
44 44 })
45 45 ```
46 46
47 +!!! note
48 + If the installed version of `nvim-lspconfig` includes the changes from
49 +[neovim/nvim-lspconfig@`70d1c2c`](https://github.com/neovim/nvim-lspconfig/commit/70d1c2c31a88af4b36019dc1551be16bffb8f9db),
50 + you will need to use Ruff version `0.5.3` or later.
51 +
47 52 If you're using Ruff alongside another language server (like Pyright), you may want to defer to that
48 53 language server for certain capabilities, like [`textDocument/hover`](./features.md#hover):
49 54