-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Repo indexer not searching some method names #5694
Comments
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs during the next 2 weeks. Thank you for your contributions. |
Possibly related #5277 (cannot search snake_case) |
Same here. For instance, I search for "main" and I get quite a few hits, but none of them is a main() function which I'm certain exists. It's not only a camel case problem, apparently. Also, it's not necessarily an index problem, but perhaps a retrieval problem? But: One might think: it's indexing Mon and Console separately, but with other words it works half-fine: Here the .h definition is correctly found, but the corresponding .c implementation is not. |
Should be fixed from #7733 |
[x]
):Description
I have code like
$e->getMessage()
but the indexer cannot search 'getMessage'.To find this code I must search '*Message', but obviously that example brings up many unwanted results.
Code like
$this->method()
can be searched with 'method' so perhaps the indexer is splitting the camelcase words.The text was updated successfully, but these errors were encountered: