-
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
Auto search - option to search while typing #46326
Comments
If implemented, could it be toggled with a workspace setting and defaulted to 'False' ? I agree that it could be a nice feature for smaller workspaces. |
in settings :
auto = turn autoSearch to afterDelay if project has <10000 files. Not sure how many files are considered as many for this algorithm. Probably file size is doing impact too. afterDelay = auto search when "done" typing Similar to off = user has submit search input manually like it is now. |
I feel like we have opposite experience with search:
This is very distracting, especially when I'm trying to construct a search query based on what I see. |
I've really been longing for this feature after coming over from WebStorm or IntelliJ! I had no idea how helpful it was until I didn't have it. It can be a life saver to see search results populate live as you type because you often can't remember the full term or there are many similar terms. I'd love to see live search come to VS Code too! |
Would love to see this feature as well, it's the biggest reason I'm considering dropping vscode. https://nuclide.io/blog/2017/08/31/Code-Search/ Additionally, it'd be great if there was an Omnisearch that searches filenames and content |
This would be great to have. Even after weeks of using vscode I forget that it doesn't autosearch and I will highlight text then do CMD+Shift+F expecting to immediately be shown the results. Hitting the Enter key just doesn't want to get saved in my muscle memory :'( |
Landed here after searching for how to enable this feature. It seems it's finally my turn to drop the classic |
|
* Make Search All Files search as you type Closes #46326. * Fix tests * Cancel search before queueing a new one. Reduces background load while user is typing rest of query * Reduce progress indicator flicker in fast searches * Don't trigger search on control chars * Remove ".only" form test * Remove unused emitter parameter * Clean up diff * Delay adding possibly partial search string to histroy * Clean up diff
Steps to Reproduce:
Does this issue occur when all extensions are disabled?: Yes
While for some workspaces with tens of thousands of files it would be performance killer for smaller workspaces I would like to have the option to search "live". When I don't know the exact name of the file I could just start typing and search would make it's job.
The text was updated successfully, but these errors were encountered: