File tree 2 files changed +32
-1
lines changed
src/tools/rust-analyzer/crates
2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ pub struct Query {
53
53
case_sensitive : bool ,
54
54
only_types : bool ,
55
55
libs : bool ,
56
+ include_hidden : bool ,
56
57
}
57
58
58
59
impl Query {
@@ -66,9 +67,14 @@ impl Query {
66
67
mode : SearchMode :: Fuzzy ,
67
68
assoc_mode : AssocSearchMode :: Include ,
68
69
case_sensitive : false ,
70
+ include_hidden : false ,
69
71
}
70
72
}
71
73
74
+ pub fn include_hidden ( & mut self ) {
75
+ self . include_hidden = true ;
76
+ }
77
+
72
78
pub fn only_types ( & mut self ) {
73
79
self . only_types = true ;
74
80
}
@@ -192,7 +198,8 @@ impl<DB> std::ops::Deref for Snap<DB> {
192
198
// Note that filtering does not currently work in VSCode due to the editor never
193
199
// sending the special symbols to the language server. Instead, you can configure
194
200
// the filtering via the `rust-analyzer.workspace.symbol.search.scope` and
195
- // `rust-analyzer.workspace.symbol.search.kind` settings.
201
+ // `rust-analyzer.workspace.symbol.search.kind` settings. Symbols prefixed
202
+ // with `__` are hidden from the search results unless configured otherwise.
196
203
//
197
204
// |===
198
205
// | Editor | Shortcut
@@ -374,6 +381,9 @@ impl Query {
374
381
if non_type_for_type_only_query || !self . matches_assoc_mode ( symbol. is_assoc ) {
375
382
continue ;
376
383
}
384
+ if !self . include_hidden && symbol. name . starts_with ( "__" ) {
385
+ continue ;
386
+ }
377
387
if self . mode . check ( & self . query , self . case_sensitive , & symbol. name ) {
378
388
cb ( symbol) ;
379
389
}
Original file line number Diff line number Diff line change @@ -926,4 +926,25 @@ struct Foo;
926
926
let navs = analysis. symbol_search ( Query :: new ( "foo" . to_owned ( ) ) , !0 ) . unwrap ( ) ;
927
927
assert_eq ! ( navs. len( ) , 2 )
928
928
}
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
+
944
+ // Unless we configure a query to show hidden symbols
945
+ let mut query = Query :: new ( "foo" . to_owned ( ) ) ;
946
+ query. include_hidden ( ) ;
947
+ let navs = analysis. symbol_search ( query, !0 ) . unwrap ( ) ;
948
+ assert_eq ! ( navs. len( ) , 3 ) ;
949
+ }
929
950
}
You can’t perform that action at this time.
0 commit comments