-
Notifications
You must be signed in to change notification settings - Fork 113
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
GitHub Extension: vscode.workspace.findFiles() only covers committed files in vscode.dev #473
Comments
Does this still reproduce in https://insiders.vscode.dev/? I have made a few changes to the API since the last release, and looking at the code, I can see that it shouldn't be looking at git at all. In your case, was |
Yes, I just tested this in insiders and it's still an issue
No: https://github.com/microsoft/vscode/blob/main/.gitignore |
Is this a new regression as of @joyceerhl do you know whether there is a known issue with the vscode.dev |
I've only just come across this issue while developing an extension, so can't comment on whether it's a regression or not. |
Thanks for the transfer, will the fix be in the September release? |
You should be able to verify this fix in the current insiders.vscode.dev |
Thanks @joyceerhl I tried the current insiders release and still see the issue. Notice the Version: 1.93.0-insider |
@thegecko just checking- does it still not work on today's insiders? |
Still doesn't work in https://insiders.vscode.dev/github/microsoft/vscode Version: 1.94.0-insider Neither staged nor uncommitted files are returned in |
Does this issue occur when all extensions are disabled?: No
Steps to Reproduce:
vscode.workspace.findFiles()
API (for the rest of these steps, use this example)vscode.workspace.findFiles()
function (example command:Find Files
) and search with a glob (e.g.**/*.mjs
) - the correct files are foundtemp.mjs
)Expected: All files in the workspace are included in the
vscode.workspace.findFiles()
results, not just ones under source control.Note: this works as expected using the local filesystem in vscode.dev
The text was updated successfully, but these errors were encountered: