[問題] VS code search.exclude沒作用

作者: SKTP (SKTP)   2017-07-27 13:59:10
開發平台(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檔案,請問是哪裡有錯誤嗎?
作者: jerryh001   2017-07-27 18:17:00
檔案路徑的斜線不是\才對嗎
作者: james732 (好人超)   2017-07-27 19:12:00
我也有用VSCode,路徑是/沒錯
作者: SKTP (SKTP)   2017-07-28 10:25:00
VScode路徑是/

Links booklink

Contact Us: admin [ a t ] ucptt.com