1. 基于工程“uboot-imx-rel_imx_4.1.15_2.1.0_ga”.
2.方法一
2.1)shift+P快捷键,输入“settings”,打开settings.json文件
2.2)输入以下代码,即可对configs文件夹指定的内容进行屏蔽
"files.exclude": {"configs/[1-3]*": true,"configs/[a-l]*": true, "configs/[A-Z]*": true, "configs/m[0-9]*": true, "configs/m[a-w]*": true, "configs/mx6[a-t]*": true, "configs/mx6ul_*": true, "configs/mx7*": true, "configs/[n-z]*": true, "configs/mx[1-5]*": true, }
3. 方法2
3.1)目录下新建文件夹".vscode",新建文件"settings.json"
3.2)在setttings.json添加一样的代码即可。