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
@iligid while I really like this idea, the extension is actually taking advantage of native VS Code filtering, which would basically be anything you can do with the existing explorer tree view. Unfortunately, as far as I can tell ( and I looked ) this idea is not supported by VS Code. Their filtering is subtractive, meaning it removes things only. This would require an additive filtering, meaning it would need to remove EVERYTHING and then add in matches ( which is the opposite of how this currently works ).
If anyone has any creative ideas on how to work around this issue, let us know. I can leave this feature request open to see if the community has any thoughts :)
A likely working solution would be to just register a handler for the following Workspace events (would not directly react on changes initiated outside of VSCode, however):_
Describe the Problem
Instead of filtering out what I don't want to see, a frequent use-case is to filter what I want to see to focus on the currently relevant.
Describe the Solution
*.csv
main.py
Would show only main.py (if existing anywhere) and .csv-files and hide everything else in the workspace
Negative filtering would normally take priority, i.e. if I add temp*.csv to the hidden files, it should not show up.
It's more or less the same like hiding files, but applying the opposite logic
Alternatives
No response
Additional Context
No response
The text was updated successfully, but these errors were encountered: