-
Notifications
You must be signed in to change notification settings - Fork 30.7k
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
Use pty naming instead of virtual process #77961
Conversation
src/vs/vscode.proposed.d.ts
Outdated
* The callback used to execute the task. Cancellation should be handled using | ||
* [Pseudoterminal.shutdown](#Pseudoterminal.shutdown). When the task is complete, | ||
* [Pseudoterminal.onDidExit](#Pseudoterminal.onDidExit) should be fired with the exit code | ||
* with '0' for success and a non-zero value for failure. |
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.
Are negative numbers allowed? If not,m can we comment that here as well.
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.
This part hasn't changed in this PR, though I'm leaning towards just making this an Event<void>
though and letting the extension show a notification if that's what it wants to do when it fails.
Part of #77160