-
Notifications
You must be signed in to change notification settings - Fork 689
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
"Go to symbol" is not showing results unless full type name used (ish) #1538
Comments
Product Information: Runtime Environment: Microsoft .NET Core Shared Framework Host Version : 2.0.3 VSCode Version : 1.19.0 I am getting the expected results in the first two cases. |
we added substring lookups only recently OmniSharp/omnisharp-roslyn#990 - this shipped in 1.13.0 of the extension https://github.com/OmniSharp/omnisharp-vscode/releases/tag/v1.13.0 |
@filipw What is the expected behavior in the |
@akshita31: That won't work because we only added substring lookups. There's a lot of code in Roslyn that handles these lookups using efficient data structures. I think we'll probably want a new public API in Roslyn to make this entire feature better in OmniSharp. |
This can be closed - |
vscode extension version 1.1.0
Given the code below the "Go to workspace symbol" doesn't behave as expected. The following searches yield non-optimal results:
ServiceLookup
- no results. Expect to seeISomeServiceLookup
andSomeServiceLookup
as result.SomeService
- onlySomeServiceLookup
listedssl
- no results. Expect to seeISomeServiceLookup
andSomeServiceLookup
as result.For comparison - the "Go to file" works in all of the above cases.
The text was updated successfully, but these errors were encountered: