Skip to content

Add Ability to Hide Certain Tasks #116892

@herrberk

Description

@herrberk

We have a variety of VSCode Tasks that are run as part of Debug targets via PreLaunchTask and these tasks pollute the dropdown list making it difficult to find other tasks. It would be super helpful if we could hide them. Here is my proposition:

{
            "label": "build task for launch target",
      ----> "hidden": true,
            "type": "shell",
            "command": "bash build.sh",
            "problemMatcher": []
}

or

{
            "label": "build task for launch target",
            "options": {
           ----> "hidden": true
             },
            "type": "shell",
            "command": "bash build.sh",
            "problemMatcher": []
}

Thoughts?

Metadata

Metadata

Assignees

Labels

*duplicateIssue identified as a duplicate of another issue(s)

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions