-
Notifications
You must be signed in to change notification settings - Fork 30k
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
44146 automatically show problems panel #71387
44146 automatically show problems panel #71387
Conversation
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR! There is a case that doesn't appear to be handled correctly though:
"presentation": {
"reveal": "always",
"revealProblem": "onProblem"
},
As discussed here this should cause the terminal to show, then the probelm panel to show if a problem occurs.
I'll look into it |
@alexr00 I have just confirmed correct behaviour for
It works with both Edit: To clarify, the behaviour is as follows: Start of task opens the 'terminal' panel (non-sticky). End of scan (end of task for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
Thanks for checking that scenario. I was hitting a different issue! |
Issue 44146:
This branch adds the option
revealProblem
, which controls whether a task should show the problems panel. Oriented onreveal
, it offersalways
,never
andonProblem
.The
reveal: silent
option already triggers the showing of the terminal when problems of MarkerSeverityError
are encountered. (seeterminalTaskSystem.ts
) The hints have been updated to reflect this.