You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Apologies for highlighting this as an enhancement issue type but I think it's a bug. I don't use this plugin so I don't have the required information for a bug report. I assume that a lot of users of ruff-lsp in Neovim uses this plugin.
We received an issue around the lightbulb functionality that it's always shown even if the code actions are no-op: astral-sh/ruff-lsp#91. This is the case for source level code actions.
To give some context, what ruff-lsp does is provide the source level code action without an edit to inform the client that the server supports it but will compute the edit lazily via the codeAction/resolve request. This means that when a client requests for a code action, it will always contain the source code actions even if there's nothing to do. So, the lightbulb is shown for every line.
Apologies for highlighting this as an enhancement issue type but I think it's a bug. I don't use this plugin so I don't have the required information for a bug report. I assume that a lot of users of
ruff-lsp
in Neovim uses this plugin.We received an issue around the lightbulb functionality that it's always shown even if the code actions are no-op: astral-sh/ruff-lsp#91. This is the case for source level code actions.
To give some context, what
ruff-lsp
does is provide the source level code action without an edit to inform the client that the server supports it but will compute the edit lazily via thecodeAction/resolve
request. This means that when a client requests for a code action, it will always contain the source code actions even if there's nothing to do. So, the lightbulb is shown for every line.My suggestion and what VS Code does as well is to use the
only
option to filter and get thequickfix
code actions to show the lightbulb. Here's a reference to the VS Code implementation: https://github.com/microsoft/vscode/blob/246d700c4604eb5ebdbb561a1a86562bf9217a62/src/vs/workbench/contrib/markers/browser/markersTreeViewer.ts#L619-L649. Refer to line 639 where it filters out the code actions and here's it translates to theCodeActionContext
before sending the request.The text was updated successfully, but these errors were encountered: