-
Notifications
You must be signed in to change notification settings - Fork 29.7k
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
Investigate removing Max results limitation for Search and replace results #8563
Comments
@chrmarti Assigning this to you. I see that you are working on improving the performance for Search results. Currently we have an hard limitation of 2048. But we never measure what is the threshold. Since you are already exercising Search performance this would be a good one to look at. Thanks |
I noticed #8529. An improvement may be to not open all files in which terms were found and replaced. As a software engineer myself I sometimes have to make many changes (just today some 33k machine names in 280 XML files). Version 1.3.1 crashed on me, but even if it had worked, I would have stared at many open files. And there's no shortcut to "save all" and "close all" :( I had to revert to Notepad++, which simply makes the changes in-place on disk, without opening all files. Maybe doing something similar is an option? |
This would be nice to fix/improve. I have to open Atom just to do find/replace. |
There should at least be a warning telling the user that not all the occurrences have been replaced. It is very misleading when "Replace All" only replaces the first 10000 items. |
Please increase this number or make it configurable |
Same here. |
The current upper bound for search in VSCode is 19999 occurrences. Is there a way to change it? |
Please make this maximum / upper boundary configurable. |
I wonder what Also, when I set it to 2000, I see 4000 results show up when I search a single letter. @roblourens |
You will also get results in open files beyond the limit |
This is a bit of a foot gun... Using some ridicules high value freeses VS Code eventually. Will create a separate issue for that |
Investigate removing Max results limitation for Search and replace results
Currently we set max limit to 10000. We need to investigate on lifting this.
The text was updated successfully, but these errors were encountered: