赞
踩
我们在使用vscode看代码的时候,不想在工作区显示某些文件及文件夹,搜索的时候不想显示不关心的文件,可以使用下面的方法设置。
{
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.o":true,
},
"files.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.o":true,
}
}
"search.exclude"和"files.exclude"写法是一样的
使用说明
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。