-
Notifications
You must be signed in to change notification settings - Fork 15
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
Implement glob match for path and extension search in Locate bar #336
Comments
How? All at once? How would you do it in other editor? |
Sorry. I mean listing them, not opening them all at once. I will choose which ones to open in the list. |
Go To |
Will it do a search recursively in all sub-directories of the opened folder? |
Yes, exactly. When you open a folder it generates the complete list of files from the extensions supported and you can find any file from the locator. |
Can I tell it to search only in a specific sub-directory? I don't want to open that directory as the new folder. |
You can filter from path, so if you need to search some sub-directory you write the partial path: |
Will something like |
I don't think the feature works as intended. Do you still have llvm-mingw? Try opening |
I found another quirk. Try to list all files in the |
I don't think you understood how the feature works, it's a fuzzy search, given low density information like |
This is the first time I hear about fuzzy search. Is it the same thing as the search suggestions in the address bar of Firefox? It will suggest to you the URLs in history or bookmarks based on what you have typed. |
Understood, but I do think it's a good idea to have a mode where filtering works the way you're looking for, I'm thinking I can add and extra mode as these ones and filter with a glob pattern match.
They use a fuzzy search too, probably different because they match against different kind of information but yes. |
I found more quirks of the feature. This is the reason why I deleted my previous comments. It's really weird. For example, it can't provide suggestions for the |
It's just a probabilistic algorithm, it will assign some score based on the consequent matches found in a string and sort the list by score. If it was nonsense to you it's probably because there are no good matches with |
I ended up implementing it for me, it can be useful having the possibility of glob matching the directory tree: 2024-09-24.23-15-15.noaudio.mp4 |
I want to list all files that have
.txt
extension in an opened folder.The text was updated successfully, but these errors were encountered: