在Sublime Text 3中隐藏搜索文件夹

时间:2017-11-14 14:53:10

标签: sublimetext3

我想在Sublime Text 3中从搜索中排除文件夹,但不在侧栏中。

folder_exclude_patterns:隐藏搜索和转到任何内容的文件夹,但也在侧栏中隐藏

binary_file_patterns:隐藏Goto Anything但不是来自搜索。

有没有诀窍呢?

"folder_exclude_patterns":
[
    "node_modules"
],

"binary_file_patterns":
[
    "node_modules/"
],

1 个答案:

答案 0 :(得分:2)

如果你不想从侧栏中删除它们,但是从搜索索引中删除它,这对我有用

{
  "folders":
  [
    {
      "path": "my/path",
      "folder_exclude_patterns":[],
      "binary_file_patterns":["node_modules/*"],
    }
  ]
}

注意我使用的是 / *