vscode: migrate analyzer_status to rust-analyzer-api.ts
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
import * as vscode from 'vscode';
|
import * as vscode from 'vscode';
|
||||||
|
|
||||||
|
import * as ra from '../rust-analyzer-api';
|
||||||
import { Ctx, Cmd } from '../ctx';
|
import { Ctx, Cmd } from '../ctx';
|
||||||
|
|
||||||
// Shows status of rust-analyzer (for debugging)
|
// Shows status of rust-analyzer (for debugging)
|
||||||
@@ -50,10 +51,7 @@ class TextDocumentContentProvider
|
|||||||
const client = this.ctx.client;
|
const client = this.ctx.client;
|
||||||
if (!editor || !client) return '';
|
if (!editor || !client) return '';
|
||||||
|
|
||||||
return client.sendRequest<string>(
|
return client.sendRequest(ra.analyzerStatus, null);
|
||||||
'rust-analyzer/analyzerStatus',
|
|
||||||
null,
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
get onDidChange(): vscode.Event<vscode.Uri> {
|
get onDidChange(): vscode.Event<vscode.Uri> {
|
||||||
|
|||||||
Reference in New Issue
Block a user