"Go to symbol" is not showing results unless full type name used (ish)
See original GitHub issuevscode 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.
namespace Test
{
public interface ISomeServiceLookup { }
public class SomeServiceLookup : ISomeServiceLookup { }
}
Issue Analytics
- State:
- Created 6 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
js/ts workspace symbol search only works if you have loaded ...
Observed: No results for Symbol EditorStyleSettings. The text was updated successfully, ... It means the ts file is not visible but only file...
Read more >Optional chaining (?.) - JavaScript - MDN Web Docs - Mozilla
When used with function calls, it returns undefined if the given function does not exist. This results in shorter and simpler expressions ...
Read more >How to Export Pandas DataFrame to a CSV File - Data to Fish
Next, you'll see a full example, where: A DataFrame will be created from scratch; Then, the DataFrame will be exported to a CSV...
Read more >Tutorial: Working with FISH — FLAC3D 7.0 documentation
When a FISH symbol name is mentioned, the associated function is executed if the symbol corresponds to a function. However, if the symbol...
Read more >Terminal Shell Integration in Visual Studio Code
These sequences should be ignored by other terminals, but unless other terminals end up adopting the sequences more widely, it's recommended to check...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
we added substring lookups only recently https://github.com/OmniSharp/omnisharp-roslyn/pull/990 - this shipped in 1.13.0 of the extension https://github.com/OmniSharp/omnisharp-vscode/releases/tag/v1.13.0
This can be closed -
ssl
in this case will work since we switched toSymbolFinder.FindSourceDeclarationsWithPatternAsync
and we have a nice fuzzy search now. This feature shipped in OmniSharp 1.32.7