如何让 SublimeText 显示 folder_include_patterns 下的子目录?

How can I make SublimeText show subdirs under folder_include_patterns?

我有一个 SublimeText3 项目,用于在边栏中显示特定文件夹。这可行,但是 folder_include_pattern 中文件夹的子目录在项目中不可见(如果我将项目作为文件夹打开,它们显然在那里)。

node_modules
  my-module
    ('test' should be here but is not shown)
  my-other-module
    ('test' should be here but is not shown)

这是我的 .project 文件:

{
  "folders": [
    {
      "path": "node_modules",
      "folder_include_patterns": [
        "my-module",
        "my-other-module"
      ]
    },
    {
      "path": "."
    }
  ]
}

如何显示folder_include_patterns中目录的所有子目录?

已解决:子目录名称也必须在 folder_include_patterns 中。例如,要包含 /node_modules/my-module/test,我需要:

 {
  "folders": [
    {
      "path": "node_modules",
      "folder_include_patterns": [
        "my-module",
        "my-other-module",
        "test"
      ]
    },
    {
      "path": "."
    }
  ]
}

2018 更新: 请注意,如果您是在 2018 年阅读这篇文章,并且想为 node_modules 执行此操作,这是处理 monorepos 的最佳方式(您有项目中包含的一些您自己的模块)是通过 yarn workspaces