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

Cannot configure problemMatcher for User-Level Task #7927

Closed
tsmaeder opened this issue May 29, 2020 · 0 comments · Fixed by #7928
Closed

Cannot configure problemMatcher for User-Level Task #7927

tsmaeder opened this issue May 29, 2020 · 0 comments · Fixed by #7928
Labels
tasks issues related to the task system vscode issues related to VSCode compatibility

Comments

@tsmaeder
Copy link
Contributor

tsmaeder commented May 29, 2020

Configuring a problemMatcher for user-level task when running the task fails silently

Steps to Reproduce:

  1. Add the following task to the "user level" tasks.json
{
            "label": "Global Task",
            "type": "shell",
            "command": "foo"
}
  1. Run the task
  2. When asked for the problemMatcher, select "never scan the output for this task".
  3. Observe: nothing happens.

The expectation here is that an empty problemMatcher array is added to the task like so:

{
            "label": "Global Task",
            "type": "shell",
            "command": "foo",
            "problemMatcher": []
}

This works in VS Code.

Additional Information

  • Operating System: Windows/FF
  • Theia Version: master < 1.2.0
@tsmaeder tsmaeder added tasks issues related to the task system vscode issues related to VSCode compatibility labels May 29, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
tasks issues related to the task system vscode issues related to VSCode compatibility
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant