我将 VSCode 与 Unity3D 一起使用,我想知道是否有任何方法可以隐藏/忽略/过滤某些类型的文件,例如 VSCode 的树视图中的 *.meta 文件?我在设置中找不到任何合适的选项。
问问题
3685 次
3 回答
13
他们现在已经添加了这个功能。转到文件->首选项->工作区设置。这将打开或创建 .vscode 文件夹,并在其下方创建 settings.json 文件。
这是一个完整的 settings.json 文件,展示了如何排除 .git 文件夹、dist 文件夹和 node_modules 文件夹。
// Place your settings in this file to overwrite default and user settings.
{
"files.exclude": {
"**/.git": true,
"dist": true,
"node_modules": true
}
}
于 2015-11-24T03:41:00.890 回答
9
于 2015-04-30T12:21:14.607 回答
1
F1 > 首选项:打开工作区设置 > [搜索设置] 排除 > 文件:排除 > 添加模式
换句话说,按 F1 打开thingy search thing,找到Preferences:Open Workspace Settings
,然后在下一个搜索框中,搜索“排除”,并在该Files:Exclude
部分中添加要排除的模式。
例如,要排除 Linux 中所有隐藏的备份文件——即末尾带有波浪号“~”的文件,请添加模式**/*~
.
您可能希望从Search:Exclude
andFiles:Watcher Exclude
部分中排除相同的模式。
于 2020-03-31T11:03:58.553 回答