-
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
Show more dev container info in title bar #14571
Conversation
packages/dev-container/src/electron-browser/container-info-contribution.ts
Outdated
Show resolved
Hide resolved
0a0f27c
to
ebd823e
Compare
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.
LGTM 👍
@@ -95,6 +103,10 @@ export class WindowTitleService { | |||
} | |||
const separatedTitle = title.split('${separator}').filter(e => e.trim().length > 0); | |||
this._title = separatedTitle.join(this.separator); | |||
const contributions = this.titleContributions.getContributions(); |
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.
Question: Can we use this feature to also implement the developmentHost
part of this method? I wasn't happy with the initial implementation anyway, and this looks like a good way of cleaning up the feature.
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.
I'll do that in another PR
ebd823e
to
42545d5
Compare
What it does
Adds info to window title when workspace is loaded in Dev Container and which platform the container is running on.
How to test
Start a Dev Container and look up onto the title. There should additionally be something like
[Dev Container @ linux]
Breaking changes
Attribution
Review checklist
Reminder for reviewers