mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-14 06:03:58 +00:00
Temporarily disable unlinked file popup
This commit is contained in:
parent
8078c3d9e8
commit
ff9ebc747d
1 changed files with 4 additions and 1 deletions
|
@ -131,7 +131,10 @@ export async function createClient(
|
|||
? diag.code
|
||||
: diag.code?.value;
|
||||
if (
|
||||
value === "unlinked-file" &&
|
||||
// FIXME: We currently emit this diagnostic way too early, before we have
|
||||
// loaded the project fully
|
||||
// value === "unlinked-file" &&
|
||||
value === "temporary-disabled" &&
|
||||
!unlinkedFiles.includes(uri) &&
|
||||
diag.message !== "file not included in module tree"
|
||||
) {
|
||||
|
|
Loading…
Reference in a new issue