无法忽略用于使用VSCode进行搜索的文件

时间:2017-11-20 23:18:16

标签: visual-studio-code

我已修改了UserSettings和WorkSpaceSettings,如下所示:

{
    "search.exclude": {
        "**/node_modules": true,
        "**/bower_components": true,
        "**/public-coverage": true,
        "**/public/dist": true,
        "**/public/static": true,
        "**/public/lib": true
      }
}

当我搜索" xyz"在搜索栏中,我仍然可以从public/dist目录和public-coverage目录中获取点击,如屏幕截图所示:

enter image description here

有谁知道如何做到这一点?

2 个答案:

答案 0 :(得分:3)

Make sure this is checked

确保已选中。这是常见的错误。

答案 1 :(得分:1)

尝试

 "search.exclude": {
    "node_modules": true,
    "bower_components": true,
    ...
 }