-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
[tasks] display message in terminal when executing a task #5332
Comments
This requires the task code having access to the XTerm. Given that Xterm is accessible from the theia/packages/terminal/src/browser/terminal-widget-impl.ts Lines 236 to 238 in c4b4d39
but not exposed by the interface theia/packages/terminal/src/browser/base/terminal-widget.ts Lines 23 to 50 in c4b4d39
could I simply add Thank you ! |
@elaihau I was able to do a POC by simply sending text to the terminal, I think it's enough? Did you mean it's difficult right now to do it for an existing terminal? (before it's created) |
@vince-fugnitto I managed sending texts to the terminal. atm I am trying to figure out how to send text the terminal at the right timing. I tried to use
|
Finishing up this one requires the change in #6836 to get merged. |
- add the suppport of having `echo` property in the `presentation` object in the task configuration. When `echo` is false, Theia does not print the executed command in the terminal. - resolves #5332 Signed-off-by: Liang Huang <lhuang4@ualberta.ca>
- add the suppport of having `echo` property in the `presentation` object in the task configuration. When `echo` is false, Theia does not print the executed command in the terminal. - resolves #5332 Signed-off-by: Liang Huang <lhuang4@ualberta.ca>
- add the suppport of having `echo` property in the `presentation` object in the task configuration. When `echo` is false, Theia does not print the executed command in the terminal. - resolves #5332 Signed-off-by: Liang Huang <lhuang4@ualberta.ca>
- add the suppport of having `echo` property in the `presentation` object in the task configuration. When `echo` is false, Theia does not print the executed command in the terminal. - resolves #5332 Signed-off-by: Liang Huang <lhuang4@ualberta.ca>
Description
The current message-service indicating when a task has been started / stopped can become quite annoying especially when multiple tasks are executed. Instead, we should adopt a more elegant solution and align with vscode which displays task information directly in the terminal
when started / stopped.
The text was updated successfully, but these errors were encountered: