@@ -53,7 +53,6 @@ pub struct Query {
53
53
case_sensitive : bool ,
54
54
only_types : bool ,
55
55
libs : bool ,
56
- include_hidden : bool ,
57
56
}
58
57
59
58
impl Query {
@@ -67,14 +66,9 @@ impl Query {
67
66
mode : SearchMode :: Fuzzy ,
68
67
assoc_mode : AssocSearchMode :: Include ,
69
68
case_sensitive : false ,
70
- include_hidden : false ,
71
69
}
72
70
}
73
71
74
- pub fn include_hidden ( & mut self ) {
75
- self . include_hidden = true ;
76
- }
77
-
78
72
pub fn only_types ( & mut self ) {
79
73
self . only_types = true ;
80
74
}
@@ -363,6 +357,7 @@ impl Query {
363
357
mut stream : fst:: map:: Union < ' _ > ,
364
358
mut cb : impl FnMut ( & ' sym FileSymbol ) ,
365
359
) {
360
+ let ignore_underscore_prefixed = !self . query . starts_with ( "__" ) ;
366
361
while let Some ( ( _, indexed_values) ) = stream. next ( ) {
367
362
for & IndexedValue { index, value } in indexed_values {
368
363
let symbol_index = & indices[ index] ;
@@ -381,7 +376,8 @@ impl Query {
381
376
if non_type_for_type_only_query || !self . matches_assoc_mode ( symbol. is_assoc ) {
382
377
continue ;
383
378
}
384
- if self . should_hide_query ( symbol) {
379
+ // Hide symbols that start with `__` unless the query starts with `__`
380
+ if ignore_underscore_prefixed && symbol. name . starts_with ( "__" ) {
385
381
continue ;
386
382
}
387
383
if self . mode . check ( & self . query , self . case_sensitive , & symbol. name ) {
@@ -392,11 +388,6 @@ impl Query {
392
388
}
393
389
}
394
390
395
- fn should_hide_query ( & self , symbol : & FileSymbol ) -> bool {
396
- // Hide symbols that start with `__` unless the query starts with `__`
397
- !self . include_hidden && symbol. name . starts_with ( "__" ) && !self . query . starts_with ( "__" )
398
- }
399
-
400
391
fn matches_assoc_mode ( & self , is_trait_assoc_item : bool ) -> bool {
401
392
!matches ! (
402
393
( is_trait_assoc_item, self . assoc_mode) ,
0 commit comments