-
-
Notifications
You must be signed in to change notification settings - Fork 16
Open
Labels
Description
dockerfile-language-server/src/server.ts
Lines 521 to 522 in 90dab55
| connection.onCodeAction((codeActionParams: CodeActionParams): Command[] | PromiseLike<CodeAction[]> => { | |
| if (applyEditSupport && codeActionParams.context.diagnostics.length > 0) { |
Looks like we are a little over-aggressive here. Even if the client does not support workspace/applyEdit (which Zed does not), we can still just send code actions back with edit populated for the client to apply the edit locally.
