-
Notifications
You must be signed in to change notification settings - Fork 34.7k
Closed
Labels
apiapi-finalizationfeature-requestRequest for new features or functionalityRequest for new features or functionalityterminalGeneral terminal issues that don't fall under another labelGeneral terminal issues that don't fall under another labelverification-neededVerification of issue is requestedVerification of issue is requestedverifiedVerification succeededVerification succeeded
Milestone
Description
There are several extension developers that want to use the active terminal APIs, we should stabilize it:
declare module 'vscode' {
export namespace window {
/**
* The currently active terminal or `undefined`. The active terminal is the one that
* currently has focus or most recently had focus.
*/
export const activeTerminal: Terminal | undefined;
/**
* An [event](#Event) which fires when the [active terminal](#window.activeTerminal)
* has changed. *Note* that the event also fires when the active terminal changes
* to `undefined`.
*/
export const onDidChangeActiveTerminal: Event<Terminal | undefined>;
}
}
Metadata
Metadata
Assignees
Labels
apiapi-finalizationfeature-requestRequest for new features or functionalityRequest for new features or functionalityterminalGeneral terminal issues that don't fall under another labelGeneral terminal issues that don't fall under another labelverification-neededVerification of issue is requestedVerification of issue is requestedverifiedVerification succeededVerification succeeded