在 visual studio 代码中隐藏 mac 上的 .meta 和 .cs.meta 文件
hiding .meta and .cs.meta files on mac in visual studio code
如何在资源管理器中隐藏这些文件?我尝试在 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
}
这应该有效:
"files.exclude": {
"**/*.meta": true
}
如果还是不行的话:
确保您使用的是最新版本的 VSCode。
或提交错误 here。
我知道 OP 正在查看 .cs
文件,但我在 Whosebug 的其他地方看不到这些文件的答案,并且相信这对人们有用。专门针对 Salesforce Apex 项目,你想要的过滤器是这样的:
"files.exclude": {
"**/*.*meta.xml": true
}
如何在资源管理器中隐藏这些文件?我尝试在 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
}
这应该有效:
"files.exclude": {
"**/*.meta": true
}
如果还是不行的话:
确保您使用的是最新版本的 VSCode。
或提交错误 here。
我知道 OP 正在查看 .cs
文件,但我在 Whosebug 的其他地方看不到这些文件的答案,并且相信这对人们有用。专门针对 Salesforce Apex 项目,你想要的过滤器是这样的:
"files.exclude": {
"**/*.*meta.xml": true
}