Skip to content

Commit 33a9021

Browse files
committed
Auto merge of #17282 - jkelleyrtp:jk/filter-by-underscorte, r=Veykril
Feat: hide double underscored symbols from symbol search Fixes #17272 by changing the default behavior of query to skip results that start with `__` (two underscores). Not sure if this has any far reaching implications - a review would help to understand if this is the right place to do the filtering, and if it's fine to do it by default on the query. If you type `__` as your search, then we'll show the matching double unders, just in case you actually need the symbol.
2 parents 845754a + 93b87e9 commit 33a9021

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

src/tools/rust-analyzer/crates/ide-db/src/symbol_index.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,8 @@ impl<DB> std::ops::Deref for Snap<DB> {
192192
// Note that filtering does not currently work in VSCode due to the editor never
193193
// sending the special symbols to the language server. Instead, you can configure
194194
// the filtering via the `rust-analyzer.workspace.symbol.search.scope` and
195-
// `rust-analyzer.workspace.symbol.search.kind` settings.
195+
// `rust-analyzer.workspace.symbol.search.kind` settings. Symbols prefixed
196+
// with `__` are hidden from the search results unless configured otherwise.
196197
//
197198
// |===
198199
// | Editor | Shortcut
@@ -356,6 +357,7 @@ impl Query {
356357
mut stream: fst::map::Union<'_>,
357358
mut cb: impl FnMut(&'sym FileSymbol),
358359
) {
360+
let ignore_underscore_prefixed = !self.query.starts_with("__");
359361
while let Some((_, indexed_values)) = stream.next() {
360362
for &IndexedValue { index, value } in indexed_values {
361363
let symbol_index = &indices[index];
@@ -374,6 +376,10 @@ impl Query {
374376
if non_type_for_type_only_query || !self.matches_assoc_mode(symbol.is_assoc) {
375377
continue;
376378
}
379+
// Hide symbols that start with `__` unless the query starts with `__`
380+
if ignore_underscore_prefixed && symbol.name.starts_with("__") {
381+
continue;
382+
}
377383
if self.mode.check(&self.query, self.case_sensitive, &symbol.name) {
378384
cb(symbol);
379385
}

src/tools/rust-analyzer/crates/ide/src/navigation_target.rs

+22
Original file line numberDiff line numberDiff line change
@@ -926,4 +926,26 @@ struct Foo;
926926
let navs = analysis.symbol_search(Query::new("foo".to_owned()), !0).unwrap();
927927
assert_eq!(navs.len(), 2)
928928
}
929+
930+
#[test]
931+
fn test_ensure_hidden_symbols_are_not_returned() {
932+
let (analysis, _) = fixture::file(
933+
r#"
934+
fn foo() {}
935+
struct Foo;
936+
static __FOO_CALLSITE: () = ();
937+
"#,
938+
);
939+
940+
// It doesn't show the hidden symbol
941+
let navs = analysis.symbol_search(Query::new("foo".to_owned()), !0).unwrap();
942+
assert_eq!(navs.len(), 2);
943+
let navs = analysis.symbol_search(Query::new("_foo".to_owned()), !0).unwrap();
944+
assert_eq!(navs.len(), 0);
945+
946+
// Unless we explicitly search for a `__` prefix
947+
let query = Query::new("__foo".to_owned());
948+
let navs = analysis.symbol_search(query, !0).unwrap();
949+
assert_eq!(navs.len(), 1);
950+
}
929951
}

0 commit comments

Comments
 (0)