英文:
"search.exclude" is not working in VSCode
问题
I get it there are special cases but I cannot exclude my folder from search in VSCode no matter what I do!
I have this in my settings.json
"search.exclude": {
"node_modules": true,
"saving/client/hls/**/*.*": true
}
and yet I see the results from saving/client/hls/
folder.
英文:
I get it there are special cases but I cannot exclude my folder from search in VSCode no matter what I do!
I have this in my settings.json
"search.exclude": {
"node_modules": true,
"saving/client/hls/**/*.*": true
}
and yet I see the results from saving/client/hls/
folder.
答案1
得分: 1
问题很可能涉及到您使用的通配符。
忽略该目录下所有文件的正确方法如下:
"saving/client/hls/**/*": true
英文:
The problem here most likely involves the wildcard that you used.
The correct way to ignore all files under that directory is this
"saving/client/hls/**/*": true
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论