Question About Search Rule

已回答

For Example, there is a field 'String orderName;'. When I type 'ornam' in Search EveryWhere, the results contains the field. However, when I type 'odnam', the result does not contain the field.

 

I wonder, in order to search 'odnam' to get the target result, what I shoud do.

 

Thanks

0

This matching logic is not customizable. IDE tries to guess the best match based on the substring entered. Here it takes two sub parts of the symbol which are order and Name and matches them against their first characters. Otherwise it would give too many false positives.

1

请先登录再写评论。