Implements

  • Disposable

Constructors

Properties

_maxLineNumber: number
contentChangeEmitter: Emitter<void> = ...
decorationIds: Set<string> = ...
disposed: boolean = false
disposedEmitter: Emitter<void> = ...
onContentChange: Event<void> = ...
onDisposed: Event<void> = ...
onVisibilityChange: Event<{
    isVisible: boolean;
    preserveFocus?: boolean;
}> = ...

Type declaration

  • isVisible: boolean
  • Optional preserveFocus?: boolean
preferences: OutputPreferences
resource: OutputResource
textModifyQueue: default<default, DefaultAddOptions> = ...
toDispose: DisposableCollection = ...
visibilityChangeEmitter: Emitter<{
    isVisible: boolean;
    preserveFocus?: boolean;
}> = ...

Type declaration

  • isVisible: boolean
  • Optional preserveFocus?: boolean
visible: boolean = true

Accessors

Methods

  • If preserveFocus is true, the channel will not take focus. It is false by default.

    • Calling show without args or with preserveFocus: false will reveal and activate the Output widget.
    • Calling show with preserveFocus: true will reveal the Output widget but won't activate it.

    Parameters

    • __namedParameters: {
          preserveFocus: boolean;
      } = ...
      • preserveFocus: boolean

    Returns void