How do I hide those files in explorer? I tried using this code in settings.json :
// Place your settings in this file to overwrite default and user settings.
"files.exclude": {
"\*.meta": true,
"**/*.cs.meta": true,
"**/.cs.meta": true,
"**/.cs": true
}
This should work:
"files.exclude": {
"**/*.meta": true
}
If that doesn't work then:
Ensure that you're on the latest version of VSCode.
Or file a bug here.
I realize the OP was looking at .cs
files, but I don't see an answer for these elsewhere on StackOverflow, and believe this will be useful for people. Specifically for Salesforce Apex projects, the filter you want is this:
"files.exclude": {
"**/*.*meta.xml": true
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With