You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes#1479
Relates to microsoft/vscode#168635
Previously, we naively joined all incoming globs together and ran a
single search for them. However, there are two problems:
- vscode's findTextInFiles doesn't really support multiple globs
- **-prefixed negations, like `!**/node_modules/**`, should apply
everywhere, but globbing behavior is to only apply that to the base
path, which led to confusion (#1479)
This PR redoes the logic. If there are N positive globs, we'll do N
searches in parallel, and apply relevant negations to each one.
Use the steps in microsoft/vscode#169033, but before step 5, modify the launch.json by adding the following property to the Attach by Process ID configuration:
microsoft/vscode#169033
The text was updated successfully, but these errors were encountered: