@kkdev92/vscode-ext-kit - v4.1.1
    Preparing search index...

    Type Alias StopReason

    Why the host is stopping. Recorded in diagnostics.

    type StopReason = {
        ContextDisposed: "context-disposed";
        Deactivate: "deactivate";
        Manual: "manual";
        StartFailed: "start-failed";
    }
    Index
    ContextDisposed: "context-disposed" = 'context-disposed'

    The failsafe registered on context.subscriptions fired.

    Deactivate: "deactivate" = 'deactivate'

    deactivate() was called by VS Code.

    Manual: "manual" = 'manual'

    Stopped explicitly, typically by a test.

    StartFailed: "start-failed" = 'start-failed'

    Activation failed and the host is unwinding.