-
Notifications
You must be signed in to change notification settings - Fork 0
Use Fuzzy Search? #13
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or requestupstream (vscode)The issue originates in VS Code and cannot be handled at the extension level.The issue originates in VS Code and cannot be handled at the extension level.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestupstream (vscode)The issue originates in VS Code and cannot be handled at the extension level.The issue originates in VS Code and cannot be handled at the extension level.
It would be good if the search was 'fuzzy', or at least less restrictive.
For example, I would expect that the search for
greek betawould give all results which have bothgreekandbetain their description; however, the extension only returns matches which containgreek betaas an exact substring.I realize that it's possible to use
greek*betawhich is a partial solution, it is still sensitive to the order of words (for example,beta*greekreturns no result).