We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3d13939 + 513d25c commit 2d79bb9Copy full SHA for 2d79bb9
editors/code/src/commands.ts
@@ -442,8 +442,8 @@ export function openDocs(ctx: Ctx): Cmd {
442
443
export function resolveCodeAction(ctx: Ctx): Cmd {
444
const client = ctx.client;
445
- return async () => {
446
- const item: lc.WorkspaceEdit = await client.sendRequest(ra.resolveCodeAction, null);
+ return async (params: ra.ResolveCodeActionParams) => {
+ const item: lc.WorkspaceEdit = await client.sendRequest(ra.resolveCodeAction, params);
447
if (!item) {
448
return;
449
}
0 commit comments