Skip to content

Commit 901c01c

Browse files
committed
fix: Highlight unlinked files consistently with inactive files
Currently, rust-analyzer highlights the entire region when a `cfg` is inactive (e.g. `#[cfg(windows)]` on a Linux machine). However, unlinked files only highlight the first three characters of the file. This was introduced in #8444, but users have repeatedly found themselves with no rust-analyzer support for a file and unsure why (see e.g. #13226 and the intentionally prominent pop-up added in PR #14366). (Anecdotally, we see this issue bite our users regularly, particularly people new to Rust.) Instead, highlight the entire inactive file, but mark it as all as unused. This allows users to hover and run the quickfix from any line. Whilst this is marginally more prominent, it's less invasive than a pop-up, and users do want to know why they're getting no rust-analyzer support in certain files.
1 parent 6e7eecc commit 901c01c

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

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

+2-10
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, TextRange,
14+
AstNode,
1515
};
1616
use text_edit::TextEdit;
1717

@@ -26,8 +26,6 @@ pub(crate) fn unlinked_file(
2626
acc: &mut Vec<Diagnostic>,
2727
file_id: FileId,
2828
) {
29-
// Limit diagnostic to the first few characters in the file. This matches how VS Code
30-
// renders it with the full span, but on other editors, and is less invasive.
3129
let fixes = fixes(ctx, file_id);
3230
// FIXME: This is a hack for the vscode extension to notice whether there is an autofix or not before having to resolve diagnostics.
3331
// This is to prevent project linking popups from appearing when there is an autofix. https://github.com/rust-lang/rust-analyzer/issues/14523
@@ -38,20 +36,14 @@ pub(crate) fn unlinked_file(
3836
};
3937

4038
let range = ctx.sema.db.parse(file_id).syntax_node().text_range();
41-
let range = FileLoader::file_text(ctx.sema.db, file_id)
42-
.char_indices()
43-
.take(3)
44-
.last()
45-
.map(|(i, _)| i)
46-
.map(|i| TextRange::up_to(i.try_into().unwrap()))
47-
.unwrap_or(range);
4839

4940
acc.push(
5041
Diagnostic::new(
5142
DiagnosticCode::Ra("unlinked-file", Severity::WeakWarning),
5243
message,
5344
FileRange { file_id, range },
5445
)
46+
.with_unused(true)
5547
.with_fixes(fixes),
5648
);
5749
}

0 commit comments

Comments
 (0)