开发平台(Platform): (Ex: Win10, Linux, ...)
win10
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
vs code
问题(Question):
因为build程式之后会有其他*.i *.s *.o等等档案,可是我只想搜寻*.c *.h,
我在设定里面设定这些
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/*.s": true,
"**/*.i": true,
"**/*.o": true,
"**/*.d": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true,
"**/*.s": true,
"**/*.i": true,
"**/*.o": true,
"**/*.d": true
},
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true,
"**/*.s": true,
"**/*.i": true
}
其中files.exclude有成功,在档案总管那边看不到多余的档案,
而用search功能的时候,还是会跑出*.i *.s档案,请问是哪里有错误吗?