VSCode中屏蔽文件files.exclude和屏蔽文件搜索search.exclude
Posted qlexcel
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VSCode中屏蔽文件files.exclude和屏蔽文件搜索search.exclude相关的知识,希望对你有一定的参考价值。
在VSCode中按下Ctrl+Shift+P
打开命令面板
输入settings
,选择Preferences: Open Settings (JSON)
打开之后添加files.exclude和search.exclude,如下
要屏蔽什么文件或者屏蔽什么文件搜索,直接把文件或文件夹路径填进去即可。
后面的true表示使能,不屏蔽的话改为false即可。
再屏蔽几个的效果:(需要保存此文件才能生效)
{
"files.encoding": "gb2312",
"security.workspace.trust.untrustedFiles": "open",
"files.exclude": {
"arch/avr32": true,
"arch/blackfin":true,
"arch/m68k":true,
},
"search.exclude": {
"arch/avr32":true,
"arch/blackfin":true,
"arch/m68k":true,
}
}
以上是关于VSCode中屏蔽文件files.exclude和屏蔽文件搜索search.exclude的主要内容,如果未能解决你的问题,请参考以下文章
我在 VSCode 上统一的工作区 setting.json 在 files.exclude 之后说“文件结束”
json vscode config files.exclude
Visual Studio Code:对 files.exclude 进行例外处理?