-
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
always show debug icon on first start #5584
Conversation
I'm getting this error in the build:
Anyone has any clue? |
CC: @marechal-p |
Align with vscode behavior. See discussion: https://spectrum.chat/theia/dev/debug-icon-appearance~a321c3d1-11f4-45ec-a5ed-2d5e1ba2b714 Signed-off-by: Amiram Wingarten <amiram.wingarten@sap.com>
now appveyor fail with unrelated error... |
@amiramw I'm just curious, initially we had your change, but then it was updated to the following c52e20f. It looks like the PR intended to only show the |
@akosyakov could you advise maybe why was this check added and whether it is ok not to have it? In vscode the debug icon is visible even though there are not configurations. |
We don't want to confuse a user that debugging is supported if there is no debug adapter available for his project, i.e. debug extension is installed, but no concrete debuggers. I'm not sure how to go about it. Maybe it would be better never show it by default, but concrete IDEs can enable it. cc @svenefftinge Agreed though that configurations check is not good way to detect debug adapter support. |
@svenefftinge Could we just enable it always? |
Yes, I think we can align it now, given that our vs code extension support has been improved a lot lately. |
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.
the debug view is there by default, @amiramw thank you!
Align with vscode behavior.
See discussion: https://spectrum.chat/theia/dev/debug-icon-appearance~a321c3d1-11f4-45ec-a5ed-2d5e1ba2b714
Signed-off-by: Amiram Wingarten amiram.wingarten@sap.com