如何在 vscode 扩展设置中获取 glob 列表编辑器

How to get the glob list editor in vscode extension settings

设置编辑器可以做到这一点

在设置文件中产生与此类似的结果

  "files.exclude": {
    "**/.classpath": true,
    "**/.factorypath": true,
    "**/.project": true,
    "**/.settings": true,
    "**/.zorg": true
  },

package.json这个贡献

          "print.folder.exclude": {
            "default": [],
            "type": "array",
            "description": "%print.folder.exclude%"
          },

只需获取 link 即可将文件编辑为 json。

将其声明为对象没有帮助。我如何获得 glob 列表编辑器?

我在 vscode GitHub 存储库上提出了这个问题。

维护者告诉我如何去做。他们更新了应该出现在下一个版本中的文档。

          "print.folder.exclude": {
            "default": [
              "bin",
              "obj",
              "**/*.bin",
              "**/*.exe",
              "**/*.dll",
              "**/*.hex",
              "**/*.pdb",
              "**/*.pdf"
            ],
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "%print.folder.exclude%"
          },

这会生成一个字符串数组而不是一个对象,但您会得到相同的编辑器。