VS Code API
    Preparing search index...

    Interface TextDocumentShowOptions

    Represents options to configure the behavior of showing a document in an editor.

    interface TextDocumentShowOptions {
        preserveFocus?: boolean;
        preview?: boolean;
        selection?: Range;
        viewColumn?: ViewColumn;
    }
    Index

    Properties

    preserveFocus?: boolean

    An optional flag that when true will stop the editor from taking focus.

    preview?: boolean

    An optional flag that controls if an editor-tab shows as preview. Preview tabs will be replaced and reused until set to stay - either explicitly or through editing.

    Note that the flag is ignored if a user has disabled preview editors in settings.

    selection?: Range

    An optional selection to apply for the document in the editor.

    viewColumn?: ViewColumn

    An optional view column in which the editor should be shown. The default is the active. Columns that do not exist will be created as needed up to the maximum of ViewColumn.Nine. Use ViewColumn.Beside to open the editor to the side of the currently active one.