Skip to content

Commit e11ea3c

Browse files
committed
fix: Only show unlinked-file diagnostic on first line during startup
This partially reverts #17350, based on the feedback in #17397. If we don't have an autofix, it's more annoying to highlight the whole line. This heuristic fixes the diagnostic overwhelming the user during startup.
1 parent 85e87fb commit e11ea3c

File tree

1 file changed

+23
-3
lines changed

1 file changed

+23
-3
lines changed

src/tools/rust-analyzer/crates/ide-diagnostics/src/handlers/unlinked_file.rs

+23-3
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ use ide_db::{
1111
use paths::Utf8Component;
1212
use syntax::{
1313
ast::{self, edit::IndentLevel, HasModuleItem, HasName},
14-
AstNode,
14+
AstNode, TextRange,
1515
};
1616
use text_edit::TextEdit;
1717

@@ -35,15 +35,35 @@ pub(crate) fn unlinked_file(
3535
"file not included in module tree"
3636
};
3737

38-
let range = ctx.sema.db.parse(file_id).syntax_node().text_range();
38+
let mut range = ctx.sema.db.parse(file_id).syntax_node().text_range();
39+
let mut unused = true;
40+
41+
if fixes.is_none() {
42+
// If we don't have a fix, the unlinked-file diagnostic is not
43+
// actionable. This generally means that rust-analyzer hasn't
44+
// finished startup, or we couldn't find the Cargo.toml.
45+
//
46+
// Only show this diagnostic on the first three characters of
47+
// the file, to avoid overwhelming the user during startup.
48+
range = FileLoader::file_text(ctx.sema.db, file_id)
49+
.char_indices()
50+
.take(3)
51+
.last()
52+
.map(|(i, _)| i)
53+
.map(|i| TextRange::up_to(i.try_into().unwrap()))
54+
.unwrap_or(range);
55+
// Prefer a diagnostic underline over graying out the text,
56+
// since we're only highlighting a small region.
57+
unused = false;
58+
}
3959

4060
acc.push(
4161
Diagnostic::new(
4262
DiagnosticCode::Ra("unlinked-file", Severity::WeakWarning),
4363
message,
4464
FileRange { file_id, range },
4565
)
46-
.with_unused(true)
66+
.with_unused(unused)
4767
.with_fixes(fixes),
4868
);
4969
}

0 commit comments

Comments
 (0)