-
Notifications
You must be signed in to change notification settings - Fork 29.3k
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
findFiles API should not get default excludes #33528
Comments
fyi @joaomoreno |
I also think we should be careful about changing the defaults for performance reasons. @roblourens are we using ripgrep for the findFiles call or our old slow find mechanism? |
The old one, it takes the same path as quickopen. |
I just hit this case where |
That. |
Moving this to December so that we can try this a little but my plan is to not-inherit default excludes when they are set to |
Refined API is allowing export function findFiles(include: GlobPattern, exclude?: GlobPattern | null, maxResults?: number, token?: CancellationToken): Thenable<Uri[]>; |
It seems that all API calls inhert the configured exclude settings which isn't what all extensions want.
Start reading here: #31882 (comment)
The text was updated successfully, but these errors were encountered: