-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Last terminal on gitpod.yml is not focused #9473
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
Comments
The ability to explicitly focus on a terminal could make sense as a gitpod.yml property. How often does this issue affect you? Is there a reason why opening up the editor and needing the focus is more important? Is this whilst stopping and starting a workspace to update |
When starting workspace, I am opening multiple terminal (run server, run react based front end and others). In one of the terminal, I am asking user to enter some inputs such as github username. That is why I want to focus on this terminal so user see the request and enter the requested information. |
Hey @sinansonmez, currently as a workaround you can just put the task below all and it should stay focused. |
Hey @axonasif, this is actually the issue. Even though I put the terminal at end, it doesn't stay focused. The reason is that one of the terminals has When I remove |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I am having the same problem. |
@vickybiswas Could you create a new issue? I think behavoiur is correct, we focus last created terminal. But we may allow to mark a task which should be focused in .gitpod.yml. cc @jeanp413 @felladrin How hard it would support in VS Code and JetBrains? |
This is a peculiar vscode quirk on how it creates terminals, internally terminal creation is async and even though we focus each one in the order they appear in gitpod.yml it can happen that Pushed a fix gitpod-io/openvscode-server@7a4435f |
IntelliJ Remote Dev API currently has no method for controlling the focus on terminals running in JetBrains Client. We also can't control the order the terminals are displayed. Terminal splitting is also not possible at the moment. |
Bug description
There are three terminals listed on
.gitpod.yml
. One of the terminals includeopenMode: split-right
Expected behaviour is that last one should be in focus. However because of
openMode: split-right
the focus is on splitted terminals. When i removeopenMode: split-right
, it works as expected.Steps to reproduce
Open this repo in Gitpod
Workspace affected
https://github.com/mattermost/mattermost-gitpod-config
Expected behavior
No response
Example repository
No response
Anything else?
No response
The text was updated successfully, but these errors were encountered: