Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support "string array" in settings UI #410

Closed
alefragnani opened this issue Aug 19, 2020 · 0 comments
Closed

Support "string array" in settings UI #410

alefragnani opened this issue Aug 19, 2020 · 0 comments
Labels
enhancement vscode api adoption Adopting new/updated VS Code APIs
Milestone

Comments

@alefragnani
Copy link
Owner

The settings baseFolders and ignoredFolders should be updated to allow to be defined in Settings UI, not only JSON

This:

    "projectManager.git.baseFolders": {
      "type": "array",
      "default": [],
      "description": "%projectManager.configuration.git.baseFolders.description%"
    },

Should become this:

    "projectManager.git.baseFolders": {
      "type": "array",
      "default": [],
      "items": {
        "type": "string"						
      },
      "description": "%projectManager.configuration.git.baseFolders.description%"
    },
@alefragnani alefragnani added enhancement vscode api adoption Adopting new/updated VS Code APIs labels Aug 19, 2020
@alefragnani alefragnani added this to the 11.2.0 milestone Aug 19, 2020
alefragnani added a commit that referenced this issue Aug 19, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement vscode api adoption Adopting new/updated VS Code APIs
Projects
None yet
Development

No branches or pull requests

1 participant