Skip to content
This repository was archived by the owner on Nov 18, 2022. It is now read-only.

Commit 1b9b4ac

Browse files
authored
Merge pull request #833 from tchebb/fix-rust-analyzer-progress
rust-analyzer: Listen for new "roots scanned" message to indicate progress
2 parents 3030b58 + 6097b37 commit 1b9b4ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rustAnalyzer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ async function setupGlobalProgress(client: lc.LanguageClient) {
288288
if (newState === lc.State.Starting) {
289289
await client.onReady();
290290

291-
const RUST_ANALYZER_PROGRESS = 'rustAnalyzer/startup';
291+
const RUST_ANALYZER_PROGRESS = 'rustAnalyzer/roots scanned';
292292
client.onProgress(
293293
new lc.ProgressType<{
294294
kind: 'begin' | 'report' | 'end';

0 commit comments

Comments
 (0)