mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-27 21:43:37 +00:00
Use typed notification method
This commit is contained in:
parent
d2281f0367
commit
8661740626
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ async function activateServer(ctx: Ctx): Promise<RustAnalyzerExtensionApi> {
|
||||||
);
|
);
|
||||||
vscode.workspace.onDidChangeConfiguration(
|
vscode.workspace.onDidChangeConfiguration(
|
||||||
async (_) => {
|
async (_) => {
|
||||||
await ctx.client?.sendNotification("workspace/didChangeConfiguration", {
|
await ctx.client?.sendNotification(lc.DidChangeConfigurationNotification.type, {
|
||||||
settings: "",
|
settings: "",
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue