mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-30 05:45:12 +00:00
Client side draft
This commit is contained in:
parent
9e12b9e6fd
commit
8c4aab0c80
3 changed files with 14 additions and 2 deletions
|
@ -91,6 +91,12 @@ export async function activate(context: vscode.ExtensionContext) {
|
|||
activateHighlighting(ctx);
|
||||
}
|
||||
activateInlayHints(ctx);
|
||||
|
||||
vscode.workspace.onDidChangeConfiguration(
|
||||
_ => ctx?.client?.sendNotification('workspace/didChangeConfiguration', { settings: "" }),
|
||||
null,
|
||||
ctx?.subscriptions,
|
||||
);
|
||||
}
|
||||
|
||||
export async function deactivate() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue