-
Notifications
You must be signed in to change notification settings - Fork 29.4k
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
Add onDidChangeShell
event to the API
#160900
Conversation
Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com>
Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com>
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.
Thanks! Couple of comments and this looks good to go
src/vscode-dts/vscode.d.ts
Outdated
/** | ||
* An {@link Event} which fires when the default shell changes. | ||
*/ | ||
export const onDidChangeShell: Event<string>; | ||
|
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 needs to move into a vscode.proposed.envShellEvent.d.ts
file instead to go through our proposal/finalization process.
Co-authored-by: Daniel Imms <2193314+Tyriar@users.noreply.github.com>
Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com>
Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com>
@Tyriar If you're okay, I can rebase the commits to avoid garbage commits on the main branch. |
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.
Thanks @babakks, going to merge this in and will bring it to the next (internal) API sync
It's fine as they're all linked to the merge commit, the merger can squash or rebase before merging if they want thought the github UI as well. |
Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com>
Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com>
Signed-off-by: Babak K. Shandiz <babak.k.shandiz@gmail.com>
Fixes #160694