-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
[monaco][quick-open] Using fuzzySort: true
throws an error
#7899
Comments
@RomanNikitenko Do you take care about it? |
@akosyakov Within upgrade Monaco I'm going to investigate what VS Code uses instead |
I hoped for the solution. If not I can have a look. Upgrade will take a while. |
@akosyakov |
fuzzySort: true
throws an error
I investigated the problem, this function was removed from VS Code. The function provided ability to sort quick open entries respecting highlight info.
I tried to solve the problem by :
But I faced with the problem: Monaco loader did not bring comparers despite I added the corresponding items to Monaco loader here, so we can not reuse |
We coudl either drop it if it is not used much or copy missing functions via CQs. |
Steps to Reproduce:
1.
F1
-->Variable:List All
2. You can see empty list and an error in browser console
Actual behavior:
Expected behavior:
Additional Information
This place should be revisited at the next upgrade Monaco version.
The workaround is: use here
false
instead.The text was updated successfully, but these errors were encountered: