Liking cljdoc? Tell your friends :D

dots.vscode

Type Definition for Visual Studio Code 1.89 Extension API See https://code.visualstudio.com/api for more information

Type Definition for Visual Studio Code 1.89 Extension API
See https://code.visualstudio.com/api for more information
raw docstring

dots.vscode.accessibility-information

Accessibility information which controls screen reader behavior.

Accessibility information which controls screen reader behavior.
raw docstring

dots.vscode.authentication-force-new-session-options

Optional options to be used when calling {@link authentication.getSession } with the flag forceNewSession.

Optional options to be used when calling {@link authentication.getSession } with the flag `forceNewSession`.
raw docstring

dots.vscode.authentication-get-session-options

Options to be used when getting an {@link AuthenticationSession } from an {@link AuthenticationProvider }.

Options to be used when getting an {@link AuthenticationSession } from an {@link AuthenticationProvider }.
raw docstring

dots.vscode.authentication-provider

A provider for performing authentication to a service.

A provider for performing authentication to a service.
raw docstring

dots.vscode.authentication-provider-authentication-sessions-change-event

An {@link Event } which fires when an {@link AuthenticationSession } is added, removed, or changed.

An {@link Event } which fires when an {@link AuthenticationSession } is added, removed, or changed.
raw docstring

dots.vscode.authentication-provider-information

Basic information about an {@link AuthenticationProvider }

Basic information about an {@link AuthenticationProvider }
raw docstring

dots.vscode.authentication-provider-options

Options for creating an {@link AuthenticationProvider }.

Options for creating an {@link AuthenticationProvider }.
raw docstring

dots.vscode.authentication-session

Represents a session of a currently logged in user.

Represents a session of a currently logged in user.
raw docstring

dots.vscode.authentication-session-account-information

The information of an account associated with an {@link AuthenticationSession }.

The information of an account associated with an {@link AuthenticationSession }.
raw docstring

dots.vscode.authentication-sessions-change-event

An {@link Event } which fires when an {@link AuthenticationSession } is added, removed, or changed.

An {@link Event } which fires when an {@link AuthenticationSession } is added, removed, or changed.
raw docstring

dots.vscode.auto-closing-pair

Describes pairs of strings where the close string will be automatically inserted when typing the opening string.

Describes pairs of strings where the close string will be automatically inserted when typing the opening string.
raw docstring

dots.vscode.branch-coverage

Contains coverage information for a branch of a {@link StatementCoverage }.

Contains coverage information for a branch of a {@link StatementCoverage }.
raw docstring

dots.vscode.breakpoint

The base class of all breakpoint types.

The base class of all breakpoint types.
raw docstring

dots.vscode.breakpoints-change-event

An event describing the changes to the set of {@link Breakpoint breakpoints}.

An event describing the changes to the set of {@link Breakpoint breakpoints}.
raw docstring

dots.vscode.call-hierarchy-incoming-call

Represents an incoming call, e.g. a caller of a method or constructor.

Represents an incoming call, e.g. a caller of a method or constructor.
raw docstring

dots.vscode.call-hierarchy-item

Represents programming constructs like functions or constructors in the context of call hierarchy.

Represents programming constructs like functions or constructors in the context
of call hierarchy.
raw docstring

dots.vscode.call-hierarchy-outgoing-call

Represents an outgoing call, e.g. calling a getter from a method or a method from a constructor etc.

Represents an outgoing call, e.g. calling a getter from a method or a method from a constructor etc.
raw docstring

dots.vscode.call-hierarchy-provider

The call hierarchy provider interface describes the contract between extensions and the call hierarchy feature which allows to browse calls and caller of function, methods, constructor etc.

The call hierarchy provider interface describes the contract between extensions
and the call hierarchy feature which allows to browse calls and caller of function,
methods, constructor etc.
raw docstring

dots.vscode.cancellation-error

An error type that should be used to signal cancellation of an operation.

This type can be used in response to a {@link CancellationToken cancellation token} being cancelled or when an operation is being cancelled by the executor of that operation.

An error type that should be used to signal cancellation of an operation.

This type can be used in response to a {@link CancellationToken cancellation token}
being cancelled or when an operation is being cancelled by the
executor of that operation.
raw docstring

dots.vscode.cancellation-token

A cancellation token is passed to an asynchronous or long running operation to request cancellation, like cancelling a request for completion items because the user continued to type.

To get an instance of a CancellationToken use a {@link CancellationTokenSource }.

A cancellation token is passed to an asynchronous or long running
operation to request cancellation, like cancelling a request
for completion items because the user continued to type.

To get an instance of a `CancellationToken` use a
{@link CancellationTokenSource }.
raw docstring

dots.vscode.cancellation-token-source

A cancellation source creates and controls a {@link CancellationToken cancellation token}.

A cancellation source creates and controls a {@link CancellationToken cancellation token}.
raw docstring

dots.vscode.clipboard

The clipboard provides read and write access to the system's clipboard.

The clipboard provides read and write access to the system's clipboard.
raw docstring

dots.vscode.code-action

A code action represents a change that can be performed in code, e.g. to fix a problem or to refactor code.

A CodeAction must set either {@linkcode CodeAction.edit edit} and/or a {@linkcode CodeAction.command command}. If both are supplied, the edit is applied first, then the command is executed.

A code action represents a change that can be performed in code, e.g. to fix a problem or
to refactor code.

A CodeAction must set either {@linkcode CodeAction.edit edit} and/or a {@linkcode CodeAction.command command}. If both are supplied, the `edit` is applied first, then the command is executed.
raw docstring

dots.vscode.code-action-context

Contains additional diagnostic information about the context in which a {@link CodeActionProvider.provideCodeActions code action} is run.

Contains additional diagnostic information about the context in which
a {@link CodeActionProvider.provideCodeActions code action} is run.
raw docstring

dots.vscode.code-action-kind

Kind of a code action.

Kinds are a hierarchical list of identifiers separated by ., e.g. "refactor.extract.function".

Code action kinds are used by the editor for UI elements such as the refactoring context menu. Users can also trigger code actions with a specific kind with the editor.action.codeAction command.

Kind of a code action.

Kinds are a hierarchical list of identifiers separated by `.`, e.g. `"refactor.extract.function"`.

Code action kinds are used by the editor for UI elements such as the refactoring context menu. Users
can also trigger code actions with a specific kind with the `editor.action.codeAction` command.
raw docstring

dots.vscode.code-action-provider

Provides contextual actions for code. Code actions typically either fix problems or beautify/refactor code.

Code actions are surfaced to users in a few different ways:

  • The lightbulb feature, which shows a list of code actions at the current cursor position. The lightbulb's list of actions includes both quick fixes and refactorings.
  • As commands that users can run, such as Refactor. Users can run these from the command palette or with keybindings.
  • As source actions, such Organize Imports.
  • {@link CodeActionKind.QuickFix Quick fixes} are shown in the problems view.
  • Change applied on save by the editor.codeActionsOnSave setting.
Provides contextual actions for code. Code actions typically either fix problems or beautify/refactor code.

Code actions are surfaced to users in a few different ways:

- The [lightbulb](https://code.visualstudio.com/docs/editor/editingevolved#_code-action) feature, which shows
  a list of code actions at the current cursor position. The lightbulb's list of actions includes both quick fixes
  and refactorings.
- As commands that users can run, such as `Refactor`. Users can run these from the command palette or with keybindings.
- As source actions, such `Organize Imports`.
- {@link CodeActionKind.QuickFix Quick fixes} are shown in the problems view.
- Change applied on save by the `editor.codeActionsOnSave` setting.
raw docstring

dots.vscode.code-action-provider-metadata

Metadata about the type of code actions that a {@link CodeActionProvider } provides.

Metadata about the type of code actions that a {@link CodeActionProvider } provides.
raw docstring

dots.vscode.code-action-trigger-kind

The reason why code actions were requested.

The reason why code actions were requested.
raw docstring

dots.vscode.code-lens

A code lens represents a {@link Command } that should be shown along with source text, like the number of references, a way to run tests, etc.

A code lens is unresolved when no command is associated to it. For performance reasons the creation of a code lens and resolving should be done to two stages.

A code lens represents a {@link Command } that should be shown along with
source text, like the number of references, a way to run tests, etc.

A code lens is _unresolved_ when no command is associated to it. For performance
reasons the creation of a code lens and resolving should be done to two stages.
raw docstring

dots.vscode.code-lens-provider

A code lens provider adds {@link Command commands} to source text. The commands will be shown as dedicated horizontal lines in between the source text.

A code lens provider adds {@link Command commands} to source text. The commands will be shown
as dedicated horizontal lines in between the source text.
raw docstring

dots.vscode.color

Represents a color in RGBA space.

Represents a color in RGBA space.
raw docstring

dots.vscode.color-information

Represents a color range from a document.

Represents a color range from a document.
raw docstring

dots.vscode.color-presentation

A color presentation object describes how a {@linkcode Color } should be represented as text and what edits are required to refer to it from source code.

For some languages one color can have multiple presentations, e.g. css can represent the color red with the constant Red, the hex-value #ff0000, or in rgba and hsla forms. In csharp other representations apply, e.g. System.Drawing.Color.Red.

A color presentation object describes how a {@linkcode Color } should be represented as text and what
edits are required to refer to it from source code.

For some languages one color can have multiple presentations, e.g. css can represent the color red with
the constant `Red`, the hex-value `#ff0000`, or in rgba and hsla forms. In csharp other representations
apply, e.g. `System.Drawing.Color.Red`.
raw docstring

dots.vscode.color-theme

Represents a color theme.

Represents a color theme.
raw docstring

dots.vscode.color-theme-kind

Represents a color theme kind.

Represents a color theme kind.
raw docstring

dots.vscode.command

Represents a reference to a command. Provides a title which will be used to represent a command in the UI and, optionally, an array of arguments which will be passed to the command handler function when invoked.

Represents a reference to a command. Provides a title which
will be used to represent a command in the UI and, optionally,
an array of arguments which will be passed to the command handler
function when invoked.
raw docstring

dots.vscode.commands

Namespace for dealing with commands. In short, a command is a function with a unique identifier. The function is sometimes also called command handler.

Commands can be added to the editor using the {@link commands.registerCommand registerCommand} and {@link commands.registerTextEditorCommand registerTextEditorCommand} functions. Commands can be executed {@link commands.executeCommand manually} or from a UI gesture. Those are:

  • palette - Use the commands-section in package.json to make a command show in the command palette.
  • keybinding - Use the keybindings-section in package.json to enable keybindings for your extension.

Commands from other extensions and from the editor itself are accessible to an extension. However, when invoking an editor command not all argument types are supported.

This is a sample that registers a command handler and adds an entry for that command to the palette. First register a command handler with the identifier extension.sayHello.

commands.registerCommand('extension.sayHello', () => {
	window.showInformationMessage('Hello World!');
});

Second, bind the command identifier to a title under which it will show in the palette (package.json).

{
	"contributes": {
		"commands": [{
			"command": "extension.sayHello",
			"title": "Hello World"
		}]
	}
}
Namespace for dealing with commands. In short, a command is a function with a
unique identifier. The function is sometimes also called _command handler_.

Commands can be added to the editor using the {@link commands.registerCommand registerCommand}
and {@link commands.registerTextEditorCommand registerTextEditorCommand} functions. Commands
can be executed {@link commands.executeCommand manually} or from a UI gesture. Those are:

* palette - Use the `commands`-section in `package.json` to make a command show in
the [command palette](https://code.visualstudio.com/docs/getstarted/userinterface#_command-palette).
* keybinding - Use the `keybindings`-section in `package.json` to enable
[keybindings](https://code.visualstudio.com/docs/getstarted/keybindings#_advanced-customization)
for your extension.

Commands from other extensions and from the editor itself are accessible to an extension. However,
when invoking an editor command not all argument types are supported.

This is a sample that registers a command handler and adds an entry for that command to the palette. First
register a command handler with the identifier `extension.sayHello`.
```javascript
commands.registerCommand('extension.sayHello', () => {
	window.showInformationMessage('Hello World!');
});
```
Second, bind the command identifier to a title under which it will show in the palette (`package.json`).
```json
{
	"contributes": {
		"commands": [{
			"command": "extension.sayHello",
			"title": "Hello World"
		}]
	}
}
```
raw docstring

dots.vscode.comment

A comment is displayed within the editor or the Comments Panel, depending on how it is provided.

A comment is displayed within the editor or the Comments Panel, depending on how it is provided.
raw docstring

dots.vscode.comment-author-information

Author information of a {@link Comment }

Author information of a {@link Comment }
raw docstring

dots.vscode.comment-controller

A comment controller is able to provide {@link CommentThread comments} support to the editor and provide users various ways to interact with comments.

A comment controller is able to provide {@link CommentThread comments} support to the editor and
provide users various ways to interact with comments.
raw docstring

dots.vscode.comment-mode

Comment mode of a {@link Comment }

Comment mode of a {@link Comment }
raw docstring

dots.vscode.comment-options

Represents a {@link CommentController comment controller}'s {@link CommentController.options options}.

Represents a {@link CommentController comment controller}'s {@link CommentController.options options}.
raw docstring

dots.vscode.comment-reaction

Reactions of a {@link Comment }

Reactions of a {@link Comment }
raw docstring

dots.vscode.comment-reply

Command argument for actions registered in comments/commentThread/context.

Command argument for actions registered in `comments/commentThread/context`.
raw docstring

dots.vscode.comment-rule

Describes how comments for a language work.

Describes how comments for a language work.
raw docstring

dots.vscode.comment-thread

A collection of {@link Comment comments} representing a conversation at a particular range in a document.

A collection of {@link Comment comments} representing a conversation at a particular range in a document.
raw docstring

dots.vscode.comment-thread-collapsible-state

Collapsible state of a {@link CommentThread comment thread}

Collapsible state of a {@link CommentThread comment thread}
raw docstring

dots.vscode.comment-thread-state

The state of a comment thread.

The state of a comment thread.
raw docstring

dots.vscode.commenting-range-provider

Commenting range provider for a {@link CommentController comment controller}.

Commenting range provider for a {@link CommentController comment controller}.
raw docstring

dots.vscode.completion-context

Contains additional information about the context in which {@link CompletionItemProvider.provideCompletionItems completion provider} is triggered.

Contains additional information about the context in which
{@link CompletionItemProvider.provideCompletionItems completion provider} is triggered.
raw docstring

dots.vscode.completion-item

A completion item represents a text snippet that is proposed to complete text that is being typed.

It is sufficient to create a completion item from just a {@link CompletionItem.label label}. In that case the completion item will replace the {@link TextDocument.getWordRangeAtPosition word} until the cursor with the given label or {@link CompletionItem.insertText insertText}. Otherwise the given {@link CompletionItem.textEdit edit} is used.

When selecting a completion item in the editor its defined or synthesized text edit will be applied to all cursors/selections whereas {@link CompletionItem.additionalTextEdits additionalTextEdits} will be applied as provided.

A completion item represents a text snippet that is proposed to complete text that is being typed.

It is sufficient to create a completion item from just a {@link CompletionItem.label label}. In that
case the completion item will replace the {@link TextDocument.getWordRangeAtPosition word}
until the cursor with the given label or {@link CompletionItem.insertText insertText}. Otherwise the
given {@link CompletionItem.textEdit edit} is used.

When selecting a completion item in the editor its defined or synthesized text edit will be applied
to *all* cursors/selections whereas {@link CompletionItem.additionalTextEdits additionalTextEdits} will be
applied as provided.
raw docstring

dots.vscode.completion-item-label

A structured label for a {@link CompletionItem completion item}.

A structured label for a {@link CompletionItem completion item}.
raw docstring

dots.vscode.completion-item-provider

The completion item provider interface defines the contract between extensions and IntelliSense.

Providers can delay the computation of the {@linkcode CompletionItem.detail detail} and {@linkcode CompletionItem.documentation documentation} properties by implementing the {@linkcode CompletionItemProvider.resolveCompletionItem resolveCompletionItem}-function. However, properties that are needed for the initial sorting and filtering, like sortText, filterText, insertText, and range, must not be changed during resolve.

Providers are asked for completions either explicitly by a user gesture or -depending on the configuration- implicitly when typing words or trigger characters.

The completion item provider interface defines the contract between extensions and
[IntelliSense](https://code.visualstudio.com/docs/editor/intellisense).

Providers can delay the computation of the {@linkcode CompletionItem.detail detail}
and {@linkcode CompletionItem.documentation documentation} properties by implementing the
{@linkcode CompletionItemProvider.resolveCompletionItem resolveCompletionItem}-function. However, properties that
are needed for the initial sorting and filtering, like `sortText`, `filterText`, `insertText`, and `range`, must
not be changed during resolve.

Providers are asked for completions either explicitly by a user gesture or -depending on the configuration-
implicitly when typing words or trigger characters.
raw docstring

dots.vscode.completion-item-tag

Completion item tags are extra annotations that tweak the rendering of a completion item.

Completion item tags are extra annotations that tweak the rendering of a completion
item.
raw docstring

dots.vscode.completion-list

Represents a collection of {@link CompletionItem completion items} to be presented in the editor.

Represents a collection of {@link CompletionItem completion items} to be presented
in the editor.
raw docstring

dots.vscode.completion-trigger-kind

How a {@link CompletionItemProvider completion provider} was triggered

How a {@link CompletionItemProvider completion provider} was triggered
raw docstring

dots.vscode.configuration-change-event

An event describing the change in Configuration

An event describing the change in Configuration
raw docstring

dots.vscode.custom-document

Represents a custom document used by a {@linkcode CustomEditorProvider }.

Custom documents are only used within a given CustomEditorProvider. The lifecycle of a CustomDocument is managed by the editor. When no more references remain to a CustomDocument, it is disposed of.

Represents a custom document used by a {@linkcode CustomEditorProvider }.

Custom documents are only used within a given `CustomEditorProvider`. The lifecycle of a `CustomDocument` is
managed by the editor. When no more references remain to a `CustomDocument`, it is disposed of.
raw docstring

dots.vscode.custom-document-backup

A backup for an {@linkcode CustomDocument }.

A backup for an {@linkcode CustomDocument }.
raw docstring

dots.vscode.custom-document-backup-context

Additional information used to implement {@linkcode CustomDocumentBackup }.

Additional information used to implement {@linkcode CustomDocumentBackup }.
raw docstring

dots.vscode.custom-document-content-change-event

Event triggered by extensions to signal to the editor that the content of a {@linkcode CustomDocument } has changed.

Event triggered by extensions to signal to the editor that the content of a {@linkcode CustomDocument }
has changed.
raw docstring

dots.vscode.custom-document-edit-event

Event triggered by extensions to signal to the editor that an edit has occurred on an {@linkcode CustomDocument }.

Event triggered by extensions to signal to the editor that an edit has occurred on an {@linkcode CustomDocument }.
raw docstring

dots.vscode.custom-document-open-context

Additional information about the opening custom document.

Additional information about the opening custom document.
raw docstring

dots.vscode.custom-editor-provider

Provider for editable custom editors that use a custom document model.

Custom editors use {@linkcode CustomDocument } as their document model instead of a {@linkcode TextDocument }. This gives extensions full control over actions such as edit, save, and backup.

You should use this type of custom editor when dealing with binary files or more complex scenarios. For simple text based documents, use {@linkcode CustomTextEditorProvider } instead.

Provider for editable custom editors that use a custom document model.

Custom editors use {@linkcode CustomDocument } as their document model instead of a {@linkcode TextDocument }.
This gives extensions full control over actions such as edit, save, and backup.

You should use this type of custom editor when dealing with binary files or more complex scenarios. For simple
text based documents, use {@linkcode CustomTextEditorProvider } instead.
raw docstring

dots.vscode.custom-readonly-editor-provider

Provider for readonly custom editors that use a custom document model.

Custom editors use {@linkcode CustomDocument } as their document model instead of a {@linkcode TextDocument }.

You should use this type of custom editor when dealing with binary files or more complex scenarios. For simple text based documents, use {@linkcode CustomTextEditorProvider } instead.

Provider for readonly custom editors that use a custom document model.

Custom editors use {@linkcode CustomDocument } as their document model instead of a {@linkcode TextDocument }.

You should use this type of custom editor when dealing with binary files or more complex scenarios. For simple
text based documents, use {@linkcode CustomTextEditorProvider } instead.
raw docstring

dots.vscode.custom-text-editor-provider

Provider for text based custom editors.

Text based custom editors use a {@linkcode TextDocument } as their data model. This considerably simplifies implementing a custom editor as it allows the editor to handle many common operations such as undo and backup. The provider is responsible for synchronizing text changes between the webview and the TextDocument.

Provider for text based custom editors.

Text based custom editors use a {@linkcode TextDocument } as their data model. This considerably simplifies
implementing a custom editor as it allows the editor to handle many common operations such as
undo and backup. The provider is responsible for synchronizing text changes between the webview and the `TextDocument`.
raw docstring

dots.vscode.data-transfer

A map containing a mapping of the mime type of the corresponding transferred data.

Drag and drop controllers that implement {@link TreeDragAndDropController.handleDrag handleDrag} can add additional mime types to the data transfer. These additional mime types will only be included in the handleDrop when the the drag was initiated from an element in the same drag and drop controller.

A map containing a mapping of the mime type of the corresponding transferred data.

Drag and drop controllers that implement {@link TreeDragAndDropController.handleDrag `handleDrag`} can add additional mime types to the
data transfer. These additional mime types will only be included in the `handleDrop` when the the drag was initiated from
an element in the same drag and drop controller.
raw docstring

dots.vscode.data-transfer-file

A file associated with a {@linkcode DataTransferItem }.

Instances of this type can only be created by the editor and not by extensions.

A file associated with a {@linkcode DataTransferItem }.

Instances of this type can only be created by the editor and not by extensions.
raw docstring

dots.vscode.data-transfer-item

Encapsulates data transferred during drag and drop operations.

Encapsulates data transferred during drag and drop operations.
raw docstring

dots.vscode.debug-adapter

A debug adapter that implements the Debug Adapter Protocol can be registered with the editor if it implements the DebugAdapter interface.

A debug adapter that implements the Debug Adapter Protocol can be registered with the editor if it implements the DebugAdapter interface.
raw docstring

dots.vscode.debug-adapter-descriptor-factory

A debug adaper factory that creates {@link DebugAdapterDescriptor debug adapter descriptors}.

A debug adaper factory that creates {@link DebugAdapterDescriptor debug adapter descriptors}.
raw docstring

dots.vscode.debug-adapter-executable

Represents a debug adapter executable and optional arguments and runtime options passed to it.

Represents a debug adapter executable and optional arguments and runtime options passed to it.
raw docstring

dots.vscode.debug-adapter-executable-options

Options for a debug adapter executable.

Options for a debug adapter executable.
raw docstring

dots.vscode.debug-adapter-named-pipe-server

Represents a debug adapter running as a Named Pipe (on Windows)/UNIX Domain Socket (on non-Windows) based server.

Represents a debug adapter running as a Named Pipe (on Windows)/UNIX Domain Socket (on non-Windows) based server.
raw docstring

dots.vscode.debug-adapter-server

Represents a debug adapter running as a socket based server.

Represents a debug adapter running as a socket based server.
raw docstring

dots.vscode.debug-adapter-tracker

A Debug Adapter Tracker is a means to track the communication between the editor and a Debug Adapter.

A Debug Adapter Tracker is a means to track the communication between the editor and a Debug Adapter.
raw docstring

dots.vscode.debug-adapter-tracker-factory

A debug adaper factory that creates {@link DebugAdapterTracker debug adapter trackers}.

A debug adaper factory that creates {@link DebugAdapterTracker debug adapter trackers}.
raw docstring

dots.vscode.debug-configuration

Configuration for a debug session.

Configuration for a debug session.
raw docstring

dots.vscode.debug-configuration-provider

A debug configuration provider allows to add debug configurations to the debug service and to resolve launch configurations before they are used to start a debug session. A debug configuration provider is registered via {@link debug.registerDebugConfigurationProvider }.

A debug configuration provider allows to add debug configurations to the debug service
and to resolve launch configurations before they are used to start a debug session.
A debug configuration provider is registered via {@link debug.registerDebugConfigurationProvider }.
raw docstring

dots.vscode.debug-configuration-provider-trigger-kind

A DebugConfigurationProviderTriggerKind specifies when the provideDebugConfigurations method of a DebugConfigurationProvider is triggered. Currently there are two situations: to provide the initial debug configurations for a newly created launch.json or to provide dynamically generated debug configurations when the user asks for them through the UI (e.g. via the "Select and Start Debugging" command). A trigger kind is used when registering a DebugConfigurationProvider with {@link debug.registerDebugConfigurationProvider }.

A DebugConfigurationProviderTriggerKind specifies when the `provideDebugConfigurations` method of a `DebugConfigurationProvider` is triggered.
Currently there are two situations: to provide the initial debug configurations for a newly created launch.json or
to provide dynamically generated debug configurations when the user asks for them through the UI (e.g. via the "Select and Start Debugging" command).
A trigger kind is used when registering a `DebugConfigurationProvider` with {@link debug.registerDebugConfigurationProvider }.
raw docstring

dots.vscode.debug-console

Represents the debug console.

Represents the debug console.
raw docstring

dots.vscode.debug-console-mode

Debug console mode used by debug session, see {@link DebugSessionOptions options}.

Debug console mode used by debug session, see {@link DebugSessionOptions options}.
raw docstring

dots.vscode.debug-session-custom-event

A custom Debug Adapter Protocol event received from a {@link DebugSession debug session}.

A custom Debug Adapter Protocol event received from a {@link DebugSession debug session}.
raw docstring

dots.vscode.debug.active-debug-console

The currently active {@link DebugConsole debug console}. If no debug session is active, output sent to the debug console is not shown.

The currently active {@link DebugConsole debug console}.
If no debug session is active, output sent to the debug console is not shown.
raw docstring

dots.vscode.debug.active-debug-session

The currently active {@link DebugSession debug session} or undefined. The active debug session is the one represented by the debug action floating window or the one currently shown in the drop down menu of the debug action floating window. If no debug session is active, the value is undefined.

The currently active {@link DebugSession debug session} or `undefined`. The active debug session is the one
represented by the debug action floating window or the one currently shown in the drop down menu of the debug action floating window.
If no debug session is active, the value is `undefined`.
raw docstring

dots.vscode.declaration-coverage

Contains coverage information for a declaration. Depending on the reporter and language, this may be types such as functions, methods, or namespaces.

Contains coverage information for a declaration. Depending on the reporter
and language, this may be types such as functions, methods, or namespaces.
raw docstring

dots.vscode.declaration-provider

The declaration provider interface defines the contract between extensions and the go to declaration feature.

The declaration provider interface defines the contract between extensions and
the go to declaration feature.
raw docstring

dots.vscode.decoration-instance-render-options

Represents render options for decoration instances. See {@link DecorationOptions.renderOptions }.

Represents render options for decoration instances. See {@link DecorationOptions.renderOptions }.
raw docstring

dots.vscode.decoration-options

Represents options for a specific decoration in a {@link TextEditorDecorationType decoration set}.

Represents options for a specific decoration in a {@link TextEditorDecorationType decoration set}.
raw docstring

dots.vscode.decoration-range-behavior

Describes the behavior of decorations when typing/editing at their edges.

Describes the behavior of decorations when typing/editing at their edges.
raw docstring

dots.vscode.definition-provider

The definition provider interface defines the contract between extensions and the go to definition and peek definition features.

The definition provider interface defines the contract between extensions and
the [go to definition](https://code.visualstudio.com/docs/editor/editingevolved#_go-to-definition)
and peek definition features.
raw docstring

dots.vscode.diagnostic

Represents a diagnostic, such as a compiler error or warning. Diagnostic objects are only valid in the scope of a file.

Represents a diagnostic, such as a compiler error or warning. Diagnostic objects
are only valid in the scope of a file.
raw docstring

dots.vscode.diagnostic-change-event

The event that is fired when diagnostics change.

The event that is fired when diagnostics change.
raw docstring

dots.vscode.diagnostic-collection

A diagnostics collection is a container that manages a set of {@link Diagnostic diagnostics}. Diagnostics are always scopes to a diagnostics collection and a resource.

To get an instance of a DiagnosticCollection use {@link languages.createDiagnosticCollection createDiagnosticCollection}.

A diagnostics collection is a container that manages a set of
{@link Diagnostic diagnostics}. Diagnostics are always scopes to a
diagnostics collection and a resource.

To get an instance of a `DiagnosticCollection` use
{@link languages.createDiagnosticCollection createDiagnosticCollection}.
raw docstring

dots.vscode.diagnostic-related-information

Represents a related message and source code location for a diagnostic. This should be used to point to code locations that cause or related to a diagnostics, e.g. when duplicating a symbol in a scope.

Represents a related message and source code location for a diagnostic. This should be
used to point to code locations that cause or related to a diagnostics, e.g. when duplicating
a symbol in a scope.
raw docstring

dots.vscode.diagnostic-severity

Represents the severity of diagnostics.

Represents the severity of diagnostics.
raw docstring

dots.vscode.diagnostic-tag

Additional metadata about the type of a diagnostic.

Additional metadata about the type of a diagnostic.
raw docstring

dots.vscode.disposable

Represents a type which can release resources, such as event listening or a timer.

Represents a type which can release resources, such
as event listening or a timer.
raw docstring

dots.vscode.document-color-provider

The document color provider defines the contract between extensions and feature of picking and modifying colors in the editor.

The document color provider defines the contract between extensions and feature of
picking and modifying colors in the editor.
raw docstring

dots.vscode.document-drop-edit

An edit operation applied {@link DocumentDropEditProvider on drop}.

An edit operation applied {@link DocumentDropEditProvider on drop}.
raw docstring

dots.vscode.document-drop-edit-provider

Provider which handles dropping of resources into a text editor.

This allows users to drag and drop resources (including resources from external apps) into the editor. While dragging and dropping files, users can hold down shift to drop the file into the editor instead of opening it. Requires editor.dropIntoEditor.enabled to be on.

Provider which handles dropping of resources into a text editor.

This allows users to drag and drop resources (including resources from external apps) into the editor. While dragging
and dropping files, users can hold down `shift` to drop the file into the editor instead of opening it.
Requires `editor.dropIntoEditor.enabled` to be on.
raw docstring

dots.vscode.document-filter

A document filter denotes a document by different properties like the {@link TextDocument.languageId language}, the {@link Uri.scheme scheme} of its resource, or a glob-pattern that is applied to the {@link TextDocument.fileName path}.

A document filter denotes a document by different properties like
the {@link TextDocument.languageId language}, the {@link Uri.scheme scheme} of
its resource, or a glob-pattern that is applied to the {@link TextDocument.fileName path}.
raw docstring

dots.vscode.document-formatting-edit-provider

The document formatting provider interface defines the contract between extensions and the formatting-feature.

The document formatting provider interface defines the contract between extensions and
the formatting-feature.
raw docstring

dots.vscode.document-highlight

A document highlight is a range inside a text document which deserves special attention. Usually a document highlight is visualized by changing the background color of its range.

A document highlight is a range inside a text document which deserves
special attention. Usually a document highlight is visualized by changing
the background color of its range.
raw docstring

dots.vscode.document-highlight-kind

A document highlight kind.

A document highlight kind.
raw docstring

dots.vscode.document-highlight-provider

The document highlight provider interface defines the contract between extensions and the word-highlight-feature.

The document highlight provider interface defines the contract between extensions and
the word-highlight-feature.
raw docstring

dots.vscode.document-link

A document link is a range in a text document that links to an internal or external resource, like another text document or a web site.

A document link is a range in a text document that links to an internal or external resource, like another
text document or a web site.
raw docstring

dots.vscode.document-link-provider

The document link provider defines the contract between extensions and feature of showing links in the editor.

The document link provider defines the contract between extensions and feature of showing
links in the editor.
raw docstring

dots.vscode.document-range-formatting-edit-provider

The document formatting provider interface defines the contract between extensions and the formatting-feature.

The document formatting provider interface defines the contract between extensions and
the formatting-feature.
raw docstring

dots.vscode.document-range-semantic-tokens-provider

The document range semantic tokens provider interface defines the contract between extensions and semantic tokens.

The document range semantic tokens provider interface defines the contract between extensions and
semantic tokens.
raw docstring

dots.vscode.document-semantic-tokens-provider

The document semantic tokens provider interface defines the contract between extensions and semantic tokens.

The document semantic tokens provider interface defines the contract between extensions and
semantic tokens.
raw docstring

dots.vscode.document-symbol

Represents programming constructs like variables, classes, interfaces etc. that appear in a document. Document symbols can be hierarchical and they have two ranges: one that encloses its definition and one that points to its most interesting range, e.g. the range of an identifier.

Represents programming constructs like variables, classes, interfaces etc. that appear in a document. Document
symbols can be hierarchical and they have two ranges: one that encloses its definition and one that points to
its most interesting range, e.g. the range of an identifier.
raw docstring

dots.vscode.document-symbol-provider

The document symbol provider interface defines the contract between extensions and the go to symbol-feature.

The document symbol provider interface defines the contract between extensions and
the [go to symbol](https://code.visualstudio.com/docs/editor/editingevolved#_go-to-symbol)-feature.
raw docstring

dots.vscode.document-symbol-provider-metadata

Metadata about a document symbol provider.

Metadata about a document symbol provider.
raw docstring

dots.vscode.end-of-line

Represents an end of line character sequence in a {@link TextDocument document}.

Represents an end of line character sequence in a {@link TextDocument document}.
raw docstring

dots.vscode.enter-action

Describes what to do when pressing Enter.

Describes what to do when pressing Enter.
raw docstring

dots.vscode.env.clipboard

The system clipboard.

The system clipboard.
raw docstring

dots.vscode.environment-variable-collection

A collection of mutations that an extension can apply to a process environment.

A collection of mutations that an extension can apply to a process environment.
raw docstring

dots.vscode.environment-variable-mutator

A type of mutation and its value to be applied to an environment variable.

A type of mutation and its value to be applied to an environment variable.
raw docstring

dots.vscode.environment-variable-mutator-type

A type of mutation that can be applied to an environment variable.

A type of mutation that can be applied to an environment variable.
raw docstring

dots.vscode.environment-variable-scope

The scope object to which the environment variable collection applies.

The scope object to which the environment variable collection applies.
raw docstring

dots.vscode.evaluatable-expression

An EvaluatableExpression represents an expression in a document that can be evaluated by an active debugger or runtime. The result of this evaluation is shown in a tooltip-like widget. If only a range is specified, the expression will be extracted from the underlying document. An optional expression can be used to override the extracted expression. In this case the range is still used to highlight the range in the document.

An EvaluatableExpression represents an expression in a document that can be evaluated by an active debugger or runtime.
The result of this evaluation is shown in a tooltip-like widget.
If only a range is specified, the expression will be extracted from the underlying document.
An optional expression can be used to override the extracted expression.
In this case the range is still used to highlight the range in the document.
raw docstring

dots.vscode.evaluatable-expression-provider

The evaluatable expression provider interface defines the contract between extensions and the debug hover. In this contract the provider returns an evaluatable expression for a given position in a document and the editor evaluates this expression in the active debug session and shows the result in a debug hover.

The evaluatable expression provider interface defines the contract between extensions and
the debug hover. In this contract the provider returns an evaluatable expression for a given position
in a document and the editor evaluates this expression in the active debug session and shows the result in a debug hover.
raw docstring

dots.vscode.event-emitter

An event emitter can be used to create and manage an {@link Event } for others to subscribe to. One emitter always owns one event.

Use this class if you want to provide event from within your extension, for instance inside a {@link TextDocumentContentProvider } or when providing API to other extensions.

An event emitter can be used to create and manage an {@link Event } for others
to subscribe to. One emitter always owns one event.

Use this class if you want to provide event from within your extension, for instance
inside a {@link TextDocumentContentProvider } or when providing
API to other extensions.
raw docstring

dots.vscode.extension

Represents an extension.

To get an instance of an Extension use {@link extensions.getExtension getExtension}.

Represents an extension.

To get an instance of an `Extension` use {@link extensions.getExtension getExtension}.
raw docstring

dots.vscode.extension-context

An extension context is a collection of utilities private to an extension.

An instance of an ExtensionContext is provided as the first parameter to the activate-call of an extension.

An extension context is a collection of utilities private to an
extension.

An instance of an `ExtensionContext` is provided as the first
parameter to the `activate`-call of an extension.
raw docstring

dots.vscode.extension-kind

In a remote window the extension kind describes if an extension runs where the UI (window) runs or if an extension runs remotely.

In a remote window the extension kind describes if an extension
runs where the UI (window) runs or if an extension runs remotely.
raw docstring

dots.vscode.extension-mode

The ExtensionMode is provided on the ExtensionContext and indicates the mode the specific extension is running in.

The ExtensionMode is provided on the `ExtensionContext` and indicates the
mode the specific extension is running in.
raw docstring

dots.vscode.extension-terminal-options

Value-object describing what options a virtual process terminal should use.

Value-object describing what options a virtual process terminal should use.
raw docstring

dots.vscode.extensions

Namespace for dealing with installed extensions. Extensions are represented by an {@link Extension }-interface which enables reflection on them.

Extension writers can provide APIs to other extensions by returning their API public surface from the activate-call.

export function activate(context: vscode.ExtensionContext) {
	let api = {
		sum(a, b) {
			return a + b;
		},
		mul(a, b) {
			return a * b;
		}
	};
	// 'export' public api-surface
	return api;
}

When depending on the API of another extension add an extensionDependencies-entry to package.json, and use the {@link extensions.getExtension getExtension}-function and the {@link Extension.exports exports}-property, like below:

let mathExt = extensions.getExtension('genius.math');
let importedApi = mathExt.exports;

console.log(importedApi.mul(42, 1));
Namespace for dealing with installed extensions. Extensions are represented
by an {@link Extension }-interface which enables reflection on them.

Extension writers can provide APIs to other extensions by returning their API public
surface from the `activate`-call.

```javascript
export function activate(context: vscode.ExtensionContext) {
	let api = {
		sum(a, b) {
			return a + b;
		},
		mul(a, b) {
			return a * b;
		}
	};
	// 'export' public api-surface
	return api;
}
```
When depending on the API of another extension add an `extensionDependencies`-entry
to `package.json`, and use the {@link extensions.getExtension getExtension}-function
and the {@link Extension.exports exports}-property, like below:

```javascript
let mathExt = extensions.getExtension('genius.math');
let importedApi = mathExt.exports;

console.log(importedApi.mul(42, 1));
```
raw docstring

dots.vscode.file-change-event

The event filesystem providers must use to signal a file change.

The event filesystem providers must use to signal a file change.
raw docstring

dots.vscode.file-change-type

Enumeration of file change types.

Enumeration of file change types.
raw docstring

dots.vscode.file-create-event

An event that is fired after files are created.

An event that is fired after files are created.
raw docstring

dots.vscode.file-decoration

A file decoration represents metadata that can be rendered with a file.

A file decoration represents metadata that can be rendered with a file.
raw docstring

dots.vscode.file-decoration-provider

The decoration provider interfaces defines the contract between extensions and file decorations.

The decoration provider interfaces defines the contract between extensions and
file decorations.
raw docstring

dots.vscode.file-delete-event

An event that is fired after files are deleted.

An event that is fired after files are deleted.
raw docstring

dots.vscode.file-permission

Permissions of a file.

Permissions of a file.
raw docstring

dots.vscode.file-rename-event

An event that is fired after files are renamed.

An event that is fired after files are renamed.
raw docstring

dots.vscode.file-stat

The FileStat-type represents metadata about a file

The `FileStat`-type represents metadata about a file
raw docstring

dots.vscode.file-system

The file system interface exposes the editor's built-in and contributed {@link FileSystemProvider file system providers}. It allows extensions to work with files from the local disk as well as files from remote places, like the remote extension host or ftp-servers.

Note that an instance of this interface is available as {@linkcode workspace.fs }.

The file system interface exposes the editor's built-in and contributed
{@link FileSystemProvider file system providers}. It allows extensions to work
with files from the local disk as well as files from remote places, like the
remote extension host or ftp-servers.

*Note* that an instance of this interface is available as {@linkcode workspace.fs }.
raw docstring

dots.vscode.file-system-error

A type that filesystem providers should use to signal errors.

This class has factory methods for common error-cases, like FileNotFound when a file or folder doesn't exist, use them like so: throw vscode.FileSystemError.FileNotFound(someUri);

A type that filesystem providers should use to signal errors.

This class has factory methods for common error-cases, like `FileNotFound` when
a file or folder doesn't exist, use them like so: `throw vscode.FileSystemError.FileNotFound(someUri);`
raw docstring

dots.vscode.file-system-provider

The filesystem provider defines what the editor needs to read, write, discover, and to manage files and folders. It allows extensions to serve files from remote places, like ftp-servers, and to seamlessly integrate those into the editor.

  • Note 1: The filesystem provider API works with {@link Uri uris} and assumes hierarchical paths, e.g. foo:/my/path is a child of foo:/my/ and a parent of foo:/my/path/deeper.
  • Note 2: There is an activation event onFileSystem:<scheme> that fires when a file or folder is being accessed.
  • Note 3: The word 'file' is often used to denote all {@link FileType kinds} of files, e.g. folders, symbolic links, and regular files.
The filesystem provider defines what the editor needs to read, write, discover,
and to manage files and folders. It allows extensions to serve files from remote places,
like ftp-servers, and to seamlessly integrate those into the editor.

* *Note 1:* The filesystem provider API works with {@link Uri uris} and assumes hierarchical
paths, e.g. `foo:/my/path` is a child of `foo:/my/` and a parent of `foo:/my/path/deeper`.
* *Note 2:* There is an activation event `onFileSystem:<scheme>` that fires when a file
or folder is being accessed.
* *Note 3:* The word 'file' is often used to denote all {@link FileType kinds} of files, e.g.
folders, symbolic links, and regular files.
raw docstring

dots.vscode.file-system-watcher

A file system watcher notifies about changes to files and folders on disk or from other {@link FileSystemProvider FileSystemProviders}.

To get an instance of a FileSystemWatcher use {@link workspace.createFileSystemWatcher createFileSystemWatcher}.

A file system watcher notifies about changes to files and folders
on disk or from other {@link FileSystemProvider FileSystemProviders}.

To get an instance of a `FileSystemWatcher` use
{@link workspace.createFileSystemWatcher createFileSystemWatcher}.
raw docstring

dots.vscode.file-type

Enumeration of file types. The types File and Directory can also be a symbolic links, in that case use FileType.File | FileType.SymbolicLink and FileType.Directory | FileType.SymbolicLink.

Enumeration of file types. The types `File` and `Directory` can also be
a symbolic links, in that case use `FileType.File | FileType.SymbolicLink` and
`FileType.Directory | FileType.SymbolicLink`.
raw docstring

dots.vscode.file-will-create-event

An event that is fired when files are going to be created.

To make modifications to the workspace before the files are created, call the {@linkcode FileWillCreateEvent.waitUntil waitUntil}-function with a thenable that resolves to a {@link WorkspaceEdit workspace edit}.

An event that is fired when files are going to be created.

To make modifications to the workspace before the files are created,
call the {@linkcode FileWillCreateEvent.waitUntil waitUntil}-function with a
thenable that resolves to a {@link WorkspaceEdit workspace edit}.
raw docstring

dots.vscode.file-will-delete-event

An event that is fired when files are going to be deleted.

To make modifications to the workspace before the files are deleted, call the {@link FileWillCreateEvent.waitUntil waitUntil}-function with a thenable that resolves to a {@link WorkspaceEdit workspace edit}.

An event that is fired when files are going to be deleted.

To make modifications to the workspace before the files are deleted,
call the {@link FileWillCreateEvent.waitUntil `waitUntil`}-function with a
thenable that resolves to a {@link WorkspaceEdit workspace edit}.
raw docstring

dots.vscode.file-will-rename-event

An event that is fired when files are going to be renamed.

To make modifications to the workspace before the files are renamed, call the {@link FileWillCreateEvent.waitUntil waitUntil}-function with a thenable that resolves to a {@link WorkspaceEdit workspace edit}.

An event that is fired when files are going to be renamed.

To make modifications to the workspace before the files are renamed,
call the {@link FileWillCreateEvent.waitUntil `waitUntil`}-function with a
thenable that resolves to a {@link WorkspaceEdit workspace edit}.
raw docstring

dots.vscode.folding-range

A line based folding range. To be valid, start and end line must be bigger than zero and smaller than the number of lines in the document. Invalid ranges will be ignored.

A line based folding range. To be valid, start and end line must be bigger than zero and smaller than the number of lines in the document.
Invalid ranges will be ignored.
raw docstring

dots.vscode.folding-range-kind

An enumeration of specific folding range kinds. The kind is an optional field of a {@link FoldingRange } and is used to distinguish specific folding ranges such as ranges originated from comments. The kind is used by commands like Fold all comments or Fold all regions. If the kind is not set on the range, the range originated from a syntax element other than comments, imports or region markers.

An enumeration of specific folding range kinds. The kind is an optional field of a {@link FoldingRange }
and is used to distinguish specific folding ranges such as ranges originated from comments. The kind is used by commands like
`Fold all comments` or `Fold all regions`.
If the kind is not set on the range, the range originated from a syntax element other than comments, imports or region markers.
raw docstring

dots.vscode.folding-range-provider

The folding range provider interface defines the contract between extensions and Folding in the editor.

The folding range provider interface defines the contract between extensions and
[Folding](https://code.visualstudio.com/docs/editor/codebasics#_folding) in the editor.
raw docstring

dots.vscode.formatting-options

Value-object describing what options formatting should use.

Value-object describing what options formatting should use.
raw docstring

dots.vscode.function-breakpoint

A breakpoint specified by a function name.

A breakpoint specified by a function name.
raw docstring

dots.vscode.global-environment-variable-collection

A collection of mutations that an extension can apply to a process environment. Applies to all scopes.

A collection of mutations that an extension can apply to a process environment. Applies to all scopes.
raw docstring

dots.vscode.hover

A hover represents additional information for a symbol or word. Hovers are rendered in a tooltip-like widget.

A hover represents additional information for a symbol or word. Hovers are
rendered in a tooltip-like widget.
raw docstring

dots.vscode.hover-provider

The hover provider interface defines the contract between extensions and the hover-feature.

The hover provider interface defines the contract between extensions and
the [hover](https://code.visualstudio.com/docs/editor/intellisense)-feature.
raw docstring

dots.vscode.implementation-provider

The implementation provider interface defines the contract between extensions and the go to implementation feature.

The implementation provider interface defines the contract between extensions and
the go to implementation feature.
raw docstring

dots.vscode.indent-action

Describes what to do with the indentation when pressing Enter.

Describes what to do with the indentation when pressing Enter.
raw docstring

dots.vscode.inlay-hint-kind

Inlay hint kinds.

The kind of an inline hint defines its appearance, e.g the corresponding foreground and background colors are being used.

Inlay hint kinds.

The kind of an inline hint defines its appearance, e.g the corresponding foreground and background colors are being
used.
raw docstring

dots.vscode.inlay-hint-label-part

An inlay hint label part allows for interactive and composite labels of inlay hints.

An inlay hint label part allows for interactive and composite labels of inlay hints.
raw docstring

dots.vscode.inlay-hints-provider

The inlay hints provider interface defines the contract between extensions and the inlay hints feature.

The inlay hints provider interface defines the contract between extensions and
the inlay hints feature.
raw docstring

dots.vscode.inline-completion-context

Provides information about the context in which an inline completion was requested.

Provides information about the context in which an inline completion was requested.
raw docstring

dots.vscode.inline-completion-item

An inline completion item represents a text snippet that is proposed inline to complete text that is being typed.

An inline completion item represents a text snippet that is proposed inline to complete text that is being typed.
raw docstring

dots.vscode.inline-completion-item-provider

The inline completion item provider interface defines the contract between extensions and the inline completion feature.

Providers are asked for completions either explicitly by a user gesture or implicitly when typing.

The inline completion item provider interface defines the contract between extensions and
the inline completion feature.

Providers are asked for completions either explicitly by a user gesture or implicitly when typing.
raw docstring

dots.vscode.inline-completion-list

Represents a collection of {@link InlineCompletionItem inline completion items} to be presented in the editor.

Represents a collection of {@link InlineCompletionItem inline completion items} to be presented
in the editor.
raw docstring

dots.vscode.inline-completion-trigger-kind

Describes how an {@link InlineCompletionItemProvider inline completion provider} was triggered.

Describes how an {@link InlineCompletionItemProvider inline completion provider} was triggered.
raw docstring

dots.vscode.inline-value-context

A value-object that contains contextual information when requesting inline values from a InlineValuesProvider.

A value-object that contains contextual information when requesting inline values from a InlineValuesProvider.
raw docstring

dots.vscode.inline-value-evaluatable-expression

Provide an inline value through an expression evaluation. If only a range is specified, the expression will be extracted from the underlying document. An optional expression can be used to override the extracted expression.

Provide an inline value through an expression evaluation.
If only a range is specified, the expression will be extracted from the underlying document.
An optional expression can be used to override the extracted expression.
raw docstring

dots.vscode.inline-value-text

Provide inline value as text.

Provide inline value as text.
raw docstring

dots.vscode.inline-value-variable-lookup

Provide inline value through a variable lookup. If only a range is specified, the variable name will be extracted from the underlying document. An optional variable name can be used to override the extracted name.

Provide inline value through a variable lookup.
If only a range is specified, the variable name will be extracted from the underlying document.
An optional variable name can be used to override the extracted name.
raw docstring

dots.vscode.inline-values-provider

The inline values provider interface defines the contract between extensions and the editor's debugger inline values feature. In this contract the provider returns inline value information for a given document range and the editor shows this information in the editor at the end of lines.

The inline values provider interface defines the contract between extensions and the editor's debugger inline values feature.
In this contract the provider returns inline value information for a given document range
and the editor shows this information in the editor at the end of lines.
raw docstring

dots.vscode.input-box

A concrete {@link QuickInput } to let the user input a text value.

Note that in many cases the more convenient {@link window.showInputBox } is easier to use. {@link window.createInputBox } should be used when {@link window.showInputBox } does not offer the required flexibility.

A concrete {@link QuickInput } to let the user input a text value.

Note that in many cases the more convenient {@link window.showInputBox }
is easier to use. {@link window.createInputBox } should be used
when {@link window.showInputBox } does not offer the required flexibility.
raw docstring

dots.vscode.input-box-validation-message

Object to configure the behavior of the validation message.

Object to configure the behavior of the validation message.
raw docstring

dots.vscode.input-box-validation-severity

The severity level for input box validation.

The severity level for input box validation.
raw docstring

dots.vscode.l-10n

Namespace for localization-related functionality in the extension API. To use this properly, you must have l10n defined in your extension manifest and have bundle.l10n.<language>.json files. For more information on how to generate bundle.l10n.<language>.json files, check out the vscode-l10n repo.

Note: Built-in extensions (for example, Git, TypeScript Language Features, GitHub Authentication) are excluded from the l10n property requirement. In other words, they do not need to specify a l10n in the extension manifest because their translated strings come from Language Packs.

Namespace for localization-related functionality in the extension API. To use this properly,
you must have `l10n` defined in your extension manifest and have bundle.l10n.<language>.json files.
For more information on how to generate bundle.l10n.<language>.json files, check out the
[vscode-l10n repo](https://github.com/microsoft/vscode-l10n).

Note: Built-in extensions (for example, Git, TypeScript Language Features, GitHub Authentication)
are excluded from the `l10n` property requirement. In other words, they do not need to specify
a `l10n` in the extension manifest because their translated strings come from Language Packs.
raw docstring

dots.vscode.l-10n.uri

The URI of the localization bundle that has been loaded for the extension. It's undefined if no bundle has been loaded. The bundle is typically not loaded if there was no bundle found or when we are running with the default language.

The URI of the localization bundle that has been loaded for the extension.
It's undefined if no bundle has been loaded. The bundle is typically not loaded if
there was no bundle found or when we are running with the default language.
raw docstring

dots.vscode.language-configuration

The language configuration interfaces defines the contract between extensions and various editor features, like automatic bracket insertion, automatic indentation etc.

The language configuration interfaces defines the contract between extensions
and various editor features, like automatic bracket insertion, automatic indentation etc.
raw docstring

dots.vscode.language-status-item

A language status item is the preferred way to present language status reports for the active text editors, such as selected linter or notifying about a configuration problem.

A language status item is the preferred way to present language status reports for the active text editors,
such as selected linter or notifying about a configuration problem.
raw docstring

dots.vscode.language-status-severity

Represents the severity level of a language status.

Represents the severity level of a language status.
raw docstring

dots.vscode.languages

Namespace for participating in language-specific editor features, like IntelliSense, code actions, diagnostics etc.

Many programming languages exist and there is huge variety in syntaxes, semantics, and paradigms. Despite that, features like automatic word-completion, code navigation, or code checking have become popular across different tools for different programming languages.

The editor provides an API that makes it simple to provide such common features by having all UI and actions already in place and by allowing you to participate by providing data only. For instance, to contribute a hover all you have to do is provide a function that can be called with a {@link TextDocument } and a {@link Position } returning hover info. The rest, like tracking the mouse, positioning the hover, keeping the hover stable etc. is taken care of by the editor.

languages.registerHoverProvider('javascript', {
	provideHover(document, position, token) {
		return new Hover('I am a hover!');
	}
});

Registration is done using a {@link DocumentSelector document selector} which is either a language id, like javascript or a more complex {@link DocumentFilter filter} like { language: 'typescript', scheme: 'file' }. Matching a document against such a selector will result in a {@link languages.match score} that is used to determine if and how a provider shall be used. When scores are equal the provider that came last wins. For features that allow full arity, like {@link languages.registerHoverProvider hover}, the score is only checked to be >0, for other features, like {@link languages.registerCompletionItemProvider IntelliSense} the score is used for determining the order in which providers are asked to participate.

Namespace for participating in language-specific editor [features](https://code.visualstudio.com/docs/editor/editingevolved),
like IntelliSense, code actions, diagnostics etc.

Many programming languages exist and there is huge variety in syntaxes, semantics, and paradigms. Despite that, features
like automatic word-completion, code navigation, or code checking have become popular across different tools for different
programming languages.

The editor provides an API that makes it simple to provide such common features by having all UI and actions already in place and
by allowing you to participate by providing data only. For instance, to contribute a hover all you have to do is provide a function
that can be called with a {@link TextDocument } and a {@link Position } returning hover info. The rest, like tracking the
mouse, positioning the hover, keeping the hover stable etc. is taken care of by the editor.

```javascript
languages.registerHoverProvider('javascript', {
	provideHover(document, position, token) {
		return new Hover('I am a hover!');
	}
});
```

Registration is done using a {@link DocumentSelector document selector} which is either a language id, like `javascript` or
a more complex {@link DocumentFilter filter} like `{ language: 'typescript', scheme: 'file' }`. Matching a document against such
a selector will result in a {@link languages.match score} that is used to determine if and how a provider shall be used. When
scores are equal the provider that came last wins. For features that allow full arity, like {@link languages.registerHoverProvider hover},
the score is only checked to be `>0`, for other features, like {@link languages.registerCompletionItemProvider IntelliSense} the
score is used for determining the order in which providers are asked to participate.
raw docstring

dots.vscode.linked-editing-range-provider

The linked editing range provider interface defines the contract between extensions and the linked editing feature.

The linked editing range provider interface defines the contract between extensions and
the linked editing feature.
raw docstring

dots.vscode.linked-editing-ranges

Represents a list of ranges that can be edited together along with a word pattern to describe valid range contents.

Represents a list of ranges that can be edited together along with a word pattern to describe valid range contents.
raw docstring

dots.vscode.location

Represents a location inside a resource, such as a line inside a text file.

Represents a location inside a resource, such as a line
inside a text file.
raw docstring

dots.vscode.location-link

Represents the connection of two locations. Provides additional metadata over normal {@link Location locations}, including an origin range.

Represents the connection of two locations. Provides additional metadata over normal {@link Location locations},
including an origin range.
raw docstring

dots.vscode.log-output-channel

A channel for containing log output.

To get an instance of a LogOutputChannel use {@link window.createOutputChannel createOutputChannel}.

A channel for containing log output.

To get an instance of a `LogOutputChannel` use
{@link window.createOutputChannel createOutputChannel}.
raw docstring

dots.vscode.markdown-string

Human-readable text that supports formatting via the markdown syntax.

Rendering of {@link ThemeIcon theme icons} via the $(<name>)-syntax is supported when the {@linkcode supportThemeIcons } is set to true.

Rendering of embedded html is supported when {@linkcode supportHtml } is set to true.

Human-readable text that supports formatting via the [markdown syntax](https://commonmark.org).

Rendering of {@link ThemeIcon theme icons} via the `$(<name>)`-syntax is supported
when the {@linkcode supportThemeIcons } is set to `true`.

Rendering of embedded html is supported when {@linkcode supportHtml } is set to `true`.
raw docstring

dots.vscode.memento

A memento represents a storage utility. It can store and retrieve values.

A memento represents a storage utility. It can store and retrieve
values.
raw docstring

dots.vscode.message-item

Represents an action that is shown with an information, warning, or error message.

Represents an action that is shown with an information, warning, or
error message.
raw docstring

dots.vscode.message-options

Options to configure the behavior of the message.

Options to configure the behavior of the message.
raw docstring

dots.vscode.notebook-cell

Represents a cell of a {@link NotebookDocument notebook}, either a {@link NotebookCellKind.Code code}-cell or {@link NotebookCellKind.Markup markup}-cell.

NotebookCell instances are immutable and are kept in sync for as long as they are part of their notebook.

Represents a cell of a {@link NotebookDocument notebook}, either a {@link NotebookCellKind.Code code}-cell
or {@link NotebookCellKind.Markup markup}-cell.

NotebookCell instances are immutable and are kept in sync for as long as they are part of their notebook.
raw docstring

dots.vscode.notebook-cell-data

NotebookCellData is the raw representation of notebook cells. Its is part of {@linkcode NotebookData }.

NotebookCellData is the raw representation of notebook cells. Its is part of {@linkcode NotebookData }.
raw docstring

dots.vscode.notebook-cell-execution

A NotebookCellExecution is how {@link NotebookController notebook controller} modify a notebook cell as it is executing.

When a cell execution object is created, the cell enters the {@linkcode NotebookCellExecutionState.Pending Pending} state. When {@linkcode NotebookCellExecution.start start(...)} is called on the execution task, it enters the {@linkcode NotebookCellExecutionState.Executing Executing} state. When {@linkcode NotebookCellExecution.end end(...)} is called, it enters the {@linkcode NotebookCellExecutionState.Idle Idle} state.

A NotebookCellExecution is how {@link NotebookController notebook controller} modify a notebook cell as
it is executing.

When a cell execution object is created, the cell enters the {@linkcode NotebookCellExecutionState.Pending Pending} state.
When {@linkcode NotebookCellExecution.start start(...)} is called on the execution task, it enters the {@linkcode NotebookCellExecutionState.Executing Executing} state. When
{@linkcode NotebookCellExecution.end end(...)} is called, it enters the {@linkcode NotebookCellExecutionState.Idle Idle} state.
raw docstring

dots.vscode.notebook-cell-execution-summary

The summary of a notebook cell execution.

The summary of a notebook cell execution.
raw docstring

dots.vscode.notebook-cell-kind

A notebook cell kind.

A notebook cell kind.
raw docstring

dots.vscode.notebook-cell-output

Notebook cell output represents a result of executing a cell. It is a container type for multiple {@link NotebookCellOutputItem output items} where contained items represent the same result but use different MIME types.

Notebook cell output represents a result of executing a cell. It is a container type for multiple
{@link NotebookCellOutputItem output items} where contained items represent the same result but
use different MIME types.
raw docstring

dots.vscode.notebook-cell-output-item

One representation of a {@link NotebookCellOutput notebook output}, defined by MIME type and data.

One representation of a {@link NotebookCellOutput notebook output}, defined by MIME type and data.
raw docstring

dots.vscode.notebook-cell-status-bar-alignment

Represents the alignment of status bar items.

Represents the alignment of status bar items.
raw docstring

dots.vscode.notebook-cell-status-bar-item-provider

A provider that can contribute items to the status bar that appears below a cell's editor.

A provider that can contribute items to the status bar that appears below a cell's editor.
raw docstring

dots.vscode.notebook-controller

A notebook controller represents an entity that can execute notebook cells. This is often referred to as a kernel.

There can be multiple controllers and the editor will let users choose which controller to use for a certain notebook. The {@linkcode NotebookController.notebookType notebookType}-property defines for what kind of notebooks a controller is for and the {@linkcode NotebookController.updateNotebookAffinity updateNotebookAffinity}-function allows controllers to set a preference for specific notebook documents. When a controller has been selected its {@link NotebookController.onDidChangeSelectedNotebooks onDidChangeSelectedNotebooks}-event fires.

When a cell is being run the editor will invoke the {@linkcode NotebookController.executeHandler executeHandler} and a controller is expected to create and finalize a {@link NotebookCellExecution notebook cell execution}. However, controllers are also free to create executions by themselves.

A notebook controller represents an entity that can execute notebook cells. This is often referred to as a kernel.

There can be multiple controllers and the editor will let users choose which controller to use for a certain notebook. The
{@linkcode NotebookController.notebookType notebookType}-property defines for what kind of notebooks a controller is for and
the {@linkcode NotebookController.updateNotebookAffinity updateNotebookAffinity}-function allows controllers to set a preference
for specific notebook documents. When a controller has been selected its
{@link NotebookController.onDidChangeSelectedNotebooks onDidChangeSelectedNotebooks}-event fires.

When a cell is being run the editor will invoke the {@linkcode NotebookController.executeHandler executeHandler} and a controller
is expected to create and finalize a {@link NotebookCellExecution notebook cell execution}. However, controllers are also free
to create executions by themselves.
raw docstring

dots.vscode.notebook-controller-affinity

Notebook controller affinity for notebook documents.

Notebook controller affinity for notebook documents.
raw docstring

dots.vscode.notebook-data

Raw representation of a notebook.

Extensions are responsible for creating {@linkcode NotebookData } so that the editor can create a {@linkcode NotebookDocument }.

Raw representation of a notebook.

Extensions are responsible for creating {@linkcode NotebookData } so that the editor
can create a {@linkcode NotebookDocument }.
raw docstring

dots.vscode.notebook-document

Represents a notebook which itself is a sequence of {@link NotebookCell code or markup cells}. Notebook documents are created from {@link NotebookData notebook data}.

Represents a notebook which itself is a sequence of {@link NotebookCell code or markup cells}. Notebook documents are
created from {@link NotebookData notebook data}.
raw docstring

dots.vscode.notebook-document-cell-change

Describes a change to a notebook cell.

Describes a change to a notebook cell.
raw docstring

dots.vscode.notebook-document-change-event

An event describing a transactional {@link NotebookDocument notebook} change.

An event describing a transactional {@link NotebookDocument notebook} change.
raw docstring

dots.vscode.notebook-document-content-change

Describes a structural change to a notebook document, e.g newly added and removed cells.

Describes a structural change to a notebook document, e.g newly added and removed cells.
raw docstring

dots.vscode.notebook-document-content-options

Notebook content options define what parts of a notebook are persisted. Note

For instance, a notebook serializer can opt-out of saving outputs and in that case the editor doesn't mark a notebooks as {@link NotebookDocument.isDirty dirty} when its output has changed.

Notebook content options define what parts of a notebook are persisted. Note

For instance, a notebook serializer can opt-out of saving outputs and in that case the editor doesn't mark a
notebooks as {@link NotebookDocument.isDirty dirty} when its output has changed.
raw docstring

dots.vscode.notebook-document-show-options

Represents options to configure the behavior of showing a {@link NotebookDocument notebook document} in an {@link NotebookEditor notebook editor}.

Represents options to configure the behavior of showing a {@link NotebookDocument notebook document} in an {@link NotebookEditor notebook editor}.
raw docstring

dots.vscode.notebook-document-will-save-event

An event that is fired when a {@link NotebookDocument notebook document} will be saved.

To make modifications to the document before it is being saved, call the {@linkcode NotebookDocumentWillSaveEvent.waitUntil waitUntil}-function with a thenable that resolves to a {@link WorkspaceEdit workspace edit}.

An event that is fired when a {@link NotebookDocument notebook document} will be saved.

To make modifications to the document before it is being saved, call the
{@linkcode NotebookDocumentWillSaveEvent.waitUntil waitUntil}-function with a thenable
that resolves to a {@link WorkspaceEdit workspace edit}.
raw docstring

dots.vscode.notebook-edit

A notebook edit represents edits that should be applied to the contents of a notebook.

A notebook edit represents edits that should be applied to the contents of a notebook.
raw docstring

dots.vscode.notebook-editor

Represents a notebook editor that is attached to a {@link NotebookDocument notebook}. Additional properties of the NotebookEditor are available in the proposed API, which will be finalized later.

Represents a notebook editor that is attached to a {@link NotebookDocument notebook}.
Additional properties of the NotebookEditor are available in the proposed
API, which will be finalized later.
raw docstring

dots.vscode.notebook-editor-reveal-type

Represents a notebook editor that is attached to a {@link NotebookDocument notebook}.

Represents a notebook editor that is attached to a {@link NotebookDocument notebook}.
raw docstring

dots.vscode.notebook-editor-selection-change-event

Represents an event describing the change in a {@link NotebookEditor.selections notebook editor's selections}.

Represents an event describing the change in a {@link NotebookEditor.selections notebook editor's selections}.
raw docstring

dots.vscode.notebook-editor-visible-ranges-change-event

Represents an event describing the change in a {@link NotebookEditor.visibleRanges notebook editor's visibleRanges}.

Represents an event describing the change in a {@link NotebookEditor.visibleRanges notebook editor's visibleRanges}.
raw docstring

dots.vscode.notebook-range

A notebook range represents an ordered pair of two cell indices. It is guaranteed that start is less than or equal to end.

A notebook range represents an ordered pair of two cell indices.
It is guaranteed that start is less than or equal to end.
raw docstring

dots.vscode.notebook-renderer-messaging

Renderer messaging is used to communicate with a single renderer. It's returned from {@link notebooks.createRendererMessaging }.

Renderer messaging is used to communicate with a single renderer. It's returned from {@link notebooks.createRendererMessaging }.
raw docstring

dots.vscode.notebook-serializer

The notebook serializer enables the editor to open notebook files.

At its core the editor only knows a {@link NotebookData notebook data structure} but not how that data structure is written to a file, nor how it is read from a file. The notebook serializer bridges this gap by deserializing bytes into notebook data and vice versa.

The notebook serializer enables the editor to open notebook files.

At its core the editor only knows a {@link NotebookData notebook data structure} but not
how that data structure is written to a file, nor how it is read from a file. The
notebook serializer bridges this gap by deserializing bytes into notebook data and
vice versa.
raw docstring

dots.vscode.notebooks

Namespace for notebooks.

The notebooks functionality is composed of three loosely coupled components:

  1. {@link NotebookSerializer } enable the editor to open, show, and save notebooks
  2. {@link NotebookController } own the execution of notebooks, e.g they create output from code cells.
  3. NotebookRenderer present notebook output in the editor. They run in a separate context.
Namespace for notebooks.

The notebooks functionality is composed of three loosely coupled components:

1. {@link NotebookSerializer } enable the editor to open, show, and save notebooks
2. {@link NotebookController } own the execution of notebooks, e.g they create output from code cells.
3. NotebookRenderer present notebook output in the editor. They run in a separate context.
raw docstring

dots.vscode.on-enter-rule

Describes a rule to be evaluated when pressing Enter.

Describes a rule to be evaluated when pressing Enter.
raw docstring

dots.vscode.on-type-formatting-edit-provider

The document formatting provider interface defines the contract between extensions and the formatting-feature.

The document formatting provider interface defines the contract between extensions and
the formatting-feature.
raw docstring

dots.vscode.open-dialog-options

Options to configure the behaviour of a file open dialog.

  • Note 1: On Windows and Linux, a file dialog cannot be both a file selector and a folder selector, so if you set both canSelectFiles and canSelectFolders to true on these platforms, a folder selector will be shown.
  • Note 2: Explicitly setting canSelectFiles and canSelectFolders to false is futile and the editor then silently adjusts the options to select files.
Options to configure the behaviour of a file open dialog.

* Note 1: On Windows and Linux, a file dialog cannot be both a file selector and a folder selector, so if you
set both `canSelectFiles` and `canSelectFolders` to `true` on these platforms, a folder selector will be shown.
* Note 2: Explicitly setting `canSelectFiles` and `canSelectFolders` to `false` is futile
and the editor then silently adjusts the options to select files.
raw docstring

dots.vscode.output-channel

An output channel is a container for readonly textual information.

To get an instance of an OutputChannel use {@link window.createOutputChannel createOutputChannel}.

An output channel is a container for readonly textual information.

To get an instance of an `OutputChannel` use
{@link window.createOutputChannel createOutputChannel}.
raw docstring

dots.vscode.overview-ruler-lane

Represents different positions for rendering a decoration in an {@link DecorationRenderOptions.overviewRulerLane overview ruler}. The overview ruler supports three lanes.

Represents different positions for rendering a decoration in an {@link DecorationRenderOptions.overviewRulerLane overview ruler}.
The overview ruler supports three lanes.
raw docstring

dots.vscode.parameter-information

Represents a parameter of a callable-signature. A parameter can have a label and a doc-comment.

Represents a parameter of a callable-signature. A parameter can
have a label and a doc-comment.
raw docstring

dots.vscode.position

Represents a line and character position, such as the position of the cursor.

Position objects are immutable. Use the {@link Position. with with} or {@link Position.translate translate} methods to derive new positions from an existing position.

Represents a line and character position, such as
the position of the cursor.

Position objects are __immutable__. Use the {@link Position. with with} or
{@link Position.translate translate} methods to derive new positions
from an existing position.
raw docstring

dots.vscode.process-execution

The execution of a task happens as an external process without shell interaction.

The execution of a task happens as an external process
without shell interaction.
raw docstring

dots.vscode.process-execution-options

Options for a process execution

Options for a process execution
raw docstring

dots.vscode.progress

Defines a generalized way of reporting progress updates.

Defines a generalized way of reporting progress updates.
raw docstring

dots.vscode.progress-location

A location in the editor at which progress information can be shown. It depends on the location how progress is visually represented.

A location in the editor at which progress information can be shown. It depends on the
location how progress is visually represented.
raw docstring

dots.vscode.progress-options

Value-object describing where and how progress should show.

Value-object describing where and how progress should show.
raw docstring

dots.vscode.pseudoterminal

Defines the interface of a terminal pty, enabling extensions to control a terminal.

Defines the interface of a terminal pty, enabling extensions to control a terminal.
raw docstring

dots.vscode.quick-diff-provider

A quick diff provider provides a {@link Uri uri} to the original state of a modified resource. The editor will use this information to render ad'hoc diffs within the text.

A quick diff provider provides a {@link Uri uri} to the original state of a
modified resource. The editor will use this information to render ad'hoc diffs
within the text.
raw docstring

dots.vscode.quick-input

A light-weight user input UI that is initially not visible. After configuring it through its properties the extension can make it visible by calling {@link QuickInput.show }.

There are several reasons why this UI might have to be hidden and the extension will be notified through {@link QuickInput.onDidHide }. (Examples include: an explicit call to {@link QuickInput.hide }, the user pressing Esc, some other input UI opening, etc.)

A user pressing Enter or some other gesture implying acceptance of the current state does not automatically hide this UI component. It is up to the extension to decide whether to accept the user's input and if the UI should indeed be hidden through a call to {@link QuickInput.hide }.

When the extension no longer needs this input UI, it should {@link QuickInput.dispose } it to allow for freeing up any resources associated with it.

See {@link QuickPick } and {@link InputBox } for concrete UIs.

A light-weight user input UI that is initially not visible. After
configuring it through its properties the extension can make it
visible by calling {@link QuickInput.show }.

There are several reasons why this UI might have to be hidden and
the extension will be notified through {@link QuickInput.onDidHide }.
(Examples include: an explicit call to {@link QuickInput.hide },
the user pressing Esc, some other input UI opening, etc.)

A user pressing Enter or some other gesture implying acceptance
of the current state does not automatically hide this UI component.
It is up to the extension to decide whether to accept the user's input
and if the UI should indeed be hidden through a call to {@link QuickInput.hide }.

When the extension no longer needs this input UI, it should
{@link QuickInput.dispose } it to allow for freeing up
any resources associated with it.

See {@link QuickPick } and {@link InputBox } for concrete UIs.
raw docstring

dots.vscode.quick-input-button

Button for an action in a {@link QuickPick } or {@link InputBox }.

Button for an action in a {@link QuickPick } or {@link InputBox }.
raw docstring

dots.vscode.quick-input-buttons

Predefined buttons for {@link QuickPick } and {@link InputBox }.

Predefined buttons for {@link QuickPick } and {@link InputBox }.
raw docstring

dots.vscode.quick-pick

A concrete {@link QuickInput } to let the user pick an item from a list of items of type T. The items can be filtered through a filter text field and there is an option {@link QuickPick.canSelectMany canSelectMany} to allow for selecting multiple items.

Note that in many cases the more convenient {@link window.showQuickPick } is easier to use. {@link window.createQuickPick } should be used when {@link window.showQuickPick } does not offer the required flexibility.

A concrete {@link QuickInput } to let the user pick an item from a
list of items of type T. The items can be filtered through a filter text field and
there is an option {@link QuickPick.canSelectMany canSelectMany} to allow for
selecting multiple items.

Note that in many cases the more convenient {@link window.showQuickPick }
is easier to use. {@link window.createQuickPick } should be used
when {@link window.showQuickPick } does not offer the required flexibility.
raw docstring

dots.vscode.quick-pick-item-button-event

An event signaling when a button in a particular {@link QuickPickItem } was triggered. This event does not fire for buttons in the title bar.

An event signaling when a button in a particular {@link QuickPickItem } was triggered.
This event does not fire for buttons in the title bar.
raw docstring

dots.vscode.quick-pick-item-kind

The kind of {@link QuickPickItem quick pick item}.

The kind of {@link QuickPickItem quick pick item}.
raw docstring

dots.vscode.range

A range represents an ordered pair of two positions. It is guaranteed that {@link Range.start start}.isBeforeOrEqual({@link Range.end end})

Range objects are immutable. Use the {@link Range. with with}, {@link Range.intersection intersection}, or {@link Range.union union} methods to derive new ranges from an existing range.

A range represents an ordered pair of two positions.
It is guaranteed that {@link Range.start start}.isBeforeOrEqual({@link Range.end end})

Range objects are __immutable__. Use the {@link Range. with with},
{@link Range.intersection intersection}, or {@link Range.union union} methods
to derive new ranges from an existing range.
raw docstring

dots.vscode.reference-context

Value-object that contains additional information when requesting references.

Value-object that contains additional information when
requesting references.
raw docstring

dots.vscode.reference-provider

The reference provider interface defines the contract between extensions and the find references-feature.

The reference provider interface defines the contract between extensions and
the [find references](https://code.visualstudio.com/docs/editor/editingevolved#_peek)-feature.
raw docstring

dots.vscode.relative-pattern

A relative pattern is a helper to construct glob patterns that are matched relatively to a base file path. The base path can either be an absolute file path as string or uri or a {@link WorkspaceFolder workspace folder}, which is the preferred way of creating the relative pattern.

A relative pattern is a helper to construct glob patterns that are matched
relatively to a base file path. The base path can either be an absolute file
path as string or uri or a {@link WorkspaceFolder workspace folder}, which is the
preferred way of creating the relative pattern.
raw docstring

dots.vscode.rename-provider

The rename provider interface defines the contract between extensions and the rename-feature.

The rename provider interface defines the contract between extensions and
the [rename](https://code.visualstudio.com/docs/editor/editingevolved#_rename-symbol)-feature.
raw docstring

dots.vscode.save-dialog-options

Options to configure the behaviour of a file save dialog.

Options to configure the behaviour of a file save dialog.
raw docstring

dots.vscode.scm

Namespace for source control mangement.

Namespace for source control mangement.
raw docstring

dots.vscode.scm.input-box

The {@link SourceControlInputBox input box} for the last source control created by the extension.

The {@link SourceControlInputBox input box} for the last source control
created by the extension.
raw docstring

dots.vscode.secret-storage

Represents a storage utility for secrets, information that is sensitive.

Represents a storage utility for secrets, information that is
sensitive.
raw docstring

dots.vscode.secret-storage-change-event

The event data that is fired when a secret is added or removed.

The event data that is fired when a secret is added or removed.
raw docstring

dots.vscode.selected-completion-info

Describes the currently selected completion item.

Describes the currently selected completion item.
raw docstring

dots.vscode.selection-range

A selection range represents a part of a selection hierarchy. A selection range may have a parent selection range that contains it.

A selection range represents a part of a selection hierarchy. A selection range
may have a parent selection range that contains it.
raw docstring

dots.vscode.selection-range-provider

The selection range provider interface defines the contract between extensions and the "Expand and Shrink Selection" feature.

The selection range provider interface defines the contract between extensions and the "Expand and Shrink Selection" feature.
raw docstring

dots.vscode.semantic-tokens

Represents semantic tokens, either in a range or in an entire document.

Represents semantic tokens, either in a range or in an entire document.
raw docstring

dots.vscode.semantic-tokens-builder

A semantic tokens builder can help with creating a SemanticTokens instance which contains delta encoded semantic tokens.

A semantic tokens builder can help with creating a `SemanticTokens` instance
which contains delta encoded semantic tokens.
raw docstring

dots.vscode.semantic-tokens-edit

Represents an edit to semantic tokens.

Represents an edit to semantic tokens.
raw docstring

dots.vscode.semantic-tokens-edits

Represents edits to semantic tokens.

Represents edits to semantic tokens.
raw docstring

dots.vscode.semantic-tokens-legend

A semantic tokens legend contains the needed information to decipher the integer encoded representation of semantic tokens.

A semantic tokens legend contains the needed information to decipher
the integer encoded representation of semantic tokens.
raw docstring

dots.vscode.shell-execution

Represents a task execution that happens inside a shell.

Represents a task execution that happens inside a shell.
raw docstring

dots.vscode.shell-quoted-string

A string that will be quoted depending on the used shell.

A string that will be quoted depending on the used shell.
raw docstring

dots.vscode.shell-quoting

Defines how an argument should be quoted if it contains spaces or unsupported characters.

Defines how an argument should be quoted if it contains
spaces or unsupported characters.
raw docstring

dots.vscode.signature-help

Signature help represents the signature of something callable. There can be multiple signatures but only one active and only one active parameter.

Signature help represents the signature of something
callable. There can be multiple signatures but only one
active and only one active parameter.
raw docstring

dots.vscode.signature-help-context

Additional information about the context in which a {@linkcode SignatureHelpProvider.provideSignatureHelp SignatureHelpProvider} was triggered.

Additional information about the context in which a
{@linkcode SignatureHelpProvider.provideSignatureHelp SignatureHelpProvider} was triggered.
raw docstring

dots.vscode.signature-help-provider

The signature help provider interface defines the contract between extensions and the parameter hints-feature.

The signature help provider interface defines the contract between extensions and
the [parameter hints](https://code.visualstudio.com/docs/editor/intellisense)-feature.
raw docstring

dots.vscode.signature-help-provider-metadata

Metadata about a registered {@linkcode SignatureHelpProvider }.

Metadata about a registered {@linkcode SignatureHelpProvider }.
raw docstring

dots.vscode.signature-help-trigger-kind

How a {@linkcode SignatureHelpProvider } was triggered.

How a {@linkcode SignatureHelpProvider } was triggered.
raw docstring

dots.vscode.signature-information

Represents the signature of something callable. A signature can have a label, like a function-name, a doc-comment, and a set of parameters.

Represents the signature of something callable. A signature
can have a label, like a function-name, a doc-comment, and
a set of parameters.
raw docstring

dots.vscode.snippet-string

A snippet string is a template which allows to insert text and to control the editor cursor when insertion happens.

A snippet can define tab stops and placeholders with $1, $2 and ${3:foo}. $0 defines the final tab stop, it defaults to the end of the snippet. Variables are defined with $name and ${name:default value}. Also see the full snippet syntax.

A snippet string is a template which allows to insert text
and to control the editor cursor when insertion happens.

A snippet can define tab stops and placeholders with `$1`, `$2`
and `${3:foo}`. `$0` defines the final tab stop, it defaults to
the end of the snippet. Variables are defined with `$name` and
`${name:default value}`. Also see
[the full snippet syntax](https://code.visualstudio.com/docs/editor/userdefinedsnippets#_create-your-own-snippets).
raw docstring

dots.vscode.snippet-text-edit

A snippet edit represents an interactive edit that is performed by the editor.

Note that a snippet edit can always be performed as a normal {@link TextEdit text edit}. This will happen when no matching editor is open or when a {@link WorkspaceEdit workspace edit} contains snippet edits for multiple files. In that case only those that match the active editor will be performed as snippet edits and the others as normal text edits.

A snippet edit represents an interactive edit that is performed by
the editor.

*Note* that a snippet edit can always be performed as a normal {@link TextEdit text edit}.
This will happen when no matching editor is open or when a {@link WorkspaceEdit workspace edit}
contains snippet edits for multiple files. In that case only those that match the active editor
will be performed as snippet edits and the others as normal text edits.
raw docstring

dots.vscode.source-breakpoint

A breakpoint specified by a source location.

A breakpoint specified by a source location.
raw docstring

dots.vscode.source-control

An source control is able to provide {@link SourceControlResourceState resource states} to the editor and interact with the editor in several source control related ways.

An source control is able to provide {@link SourceControlResourceState resource states}
to the editor and interact with the editor in several source control related ways.
raw docstring

dots.vscode.source-control-input-box

Represents the input box in the Source Control viewlet.

Represents the input box in the Source Control viewlet.
raw docstring

dots.vscode.source-control-resource-decorations

The decorations for a {@link SourceControlResourceState source control resource state}. Can be independently specified for light and dark themes.

The decorations for a {@link SourceControlResourceState source control resource state}.
Can be independently specified for light and dark themes.
raw docstring

dots.vscode.source-control-resource-group

A source control resource group is a collection of {@link SourceControlResourceState source control resource states}.

A source control resource group is a collection of
{@link SourceControlResourceState source control resource states}.
raw docstring

dots.vscode.source-control-resource-state

An source control resource state represents the state of an underlying workspace resource within a certain {@link SourceControlResourceGroup source control group}.

An source control resource state represents the state of an underlying workspace
resource within a certain {@link SourceControlResourceGroup source control group}.
raw docstring

dots.vscode.source-control-resource-themable-decorations

The theme-aware decorations for a {@link SourceControlResourceState source control resource state}.

The theme-aware decorations for a
{@link SourceControlResourceState source control resource state}.
raw docstring

dots.vscode.statement-coverage

Contains coverage information for a single statement or line.

Contains coverage information for a single statement or line.
raw docstring

dots.vscode.status-bar-alignment

Represents the alignment of status bar items.

Represents the alignment of status bar items.
raw docstring

dots.vscode.status-bar-item

A status bar item is a status bar contribution that can show text and icons and run a command on click.

A status bar item is a status bar contribution that can
show text and icons and run a command on click.
raw docstring

dots.vscode.symbol-information

Represents information about programming constructs like variables, classes, interfaces etc.

Represents information about programming constructs like variables, classes,
interfaces etc.
raw docstring

dots.vscode.symbol-tag

Symbol tags are extra annotations that tweak the rendering of a symbol.

Symbol tags are extra annotations that tweak the rendering of a symbol.
raw docstring

dots.vscode.syntax-token-type

Enumeration of commonly encountered syntax token types.

Enumeration of commonly encountered syntax token types.
raw docstring

dots.vscode.tab

Represents a tab within a {@link TabGroup group of tabs}. Tabs are merely the graphical representation within the editor area. A backing editor is not a guarantee.

Represents a tab within a {@link TabGroup group of tabs}.
Tabs are merely the graphical representation within the editor area.
A backing editor is not a guarantee.
raw docstring

dots.vscode.tab-change-event

An event describing change to tabs.

An event describing change to tabs.
raw docstring

dots.vscode.tab-group

Represents a group of tabs. A tab group itself consists of multiple tabs.

Represents a group of tabs. A tab group itself consists of multiple tabs.
raw docstring

dots.vscode.tab-group-change-event

An event describing changes to tab groups.

An event describing changes to tab groups.
raw docstring

dots.vscode.tab-groups

Represents the main editor area which consists of multiple groups which contain tabs.

Represents the main editor area which consists of multiple groups which contain tabs.
raw docstring

dots.vscode.tab-input-custom

The tab represents a custom editor.

The tab represents a custom editor.
raw docstring

dots.vscode.tab-input-notebook

The tab represents a notebook.

The tab represents a notebook.
raw docstring

dots.vscode.tab-input-notebook-diff

The tabs represents two notebooks in a diff configuration.

The tabs represents two notebooks in a diff configuration.
raw docstring

dots.vscode.tab-input-text

The tab represents a single text based resource.

The tab represents a single text based resource.
raw docstring

dots.vscode.tab-input-text-diff

The tab represents two text based resources being rendered as a diff.

The tab represents two text based resources
being rendered as a diff.
raw docstring

dots.vscode.tab-input-webview

The tab represents a webview.

The tab represents a webview.
raw docstring

dots.vscode.task-definition

A structure that defines a task kind in the system. The value must be JSON-stringifyable.

A structure that defines a task kind in the system.
The value must be JSON-stringifyable.
raw docstring

dots.vscode.task-end-event

An event signaling the end of an executed task.

This interface is not intended to be implemented.

An event signaling the end of an executed task.

This interface is not intended to be implemented.
raw docstring

dots.vscode.task-execution

An object representing an executed Task. It can be used to terminate a task.

This interface is not intended to be implemented.

An object representing an executed Task. It can be used
to terminate a task.

This interface is not intended to be implemented.
raw docstring

dots.vscode.task-filter

A task filter denotes tasks by their version and types

A task filter denotes tasks by their version and types
raw docstring

dots.vscode.task-group

A grouping for tasks. The editor by default supports the 'Clean', 'Build', 'RebuildAll' and 'Test' group.

A grouping for tasks. The editor by default supports the
'Clean', 'Build', 'RebuildAll' and 'Test' group.
raw docstring

dots.vscode.task-panel-kind

Controls how the task channel is used between tasks

Controls how the task channel is used between tasks
raw docstring

dots.vscode.task-process-end-event

An event signaling the end of a process execution triggered through a task

An event signaling the end of a process execution
triggered through a task
raw docstring

dots.vscode.task-process-start-event

An event signaling the start of a process execution triggered through a task

An event signaling the start of a process execution
triggered through a task
raw docstring

dots.vscode.task-provider

A task provider allows to add tasks to the task service. A task provider is registered via {@link tasks.registerTaskProvider }.

A task provider allows to add tasks to the task service.
A task provider is registered via {@link tasks.registerTaskProvider }.
raw docstring

dots.vscode.task-reveal-kind

Controls the behaviour of the terminal's visibility.

Controls the behaviour of the terminal's visibility.
raw docstring

dots.vscode.task-scope

The scope of a task.

The scope of a task.
raw docstring

dots.vscode.task-start-event

An event signaling the start of a task execution.

This interface is not intended to be implemented.

An event signaling the start of a task execution.

This interface is not intended to be implemented.
raw docstring

dots.vscode.telemetry-logger

A telemetry logger which can be used by extensions to log usage and error telementry.

A logger wraps around an {@link TelemetrySender sender} but it guarantees that

  • user settings to disable or tweak telemetry are respected, and that
  • potential sensitive data is removed

It also enables an "echo UI" that prints whatever data is send and it allows the editor to forward unhandled errors to the respective extensions.

To get an instance of a TelemetryLogger, use {@link env.createTelemetryLogger createTelemetryLogger}.

A telemetry logger which can be used by extensions to log usage and error telementry.

A logger wraps around an {@link TelemetrySender sender} but it guarantees that
- user settings to disable or tweak telemetry are respected, and that
- potential sensitive data is removed

It also enables an "echo UI" that prints whatever data is send and it allows the editor
to forward unhandled errors to the respective extensions.

To get an instance of a `TelemetryLogger`, use
{@link env.createTelemetryLogger `createTelemetryLogger`}.
raw docstring

dots.vscode.telemetry-logger-options

Options for creating a {@link TelemetryLogger }

Options for creating a {@link TelemetryLogger }
raw docstring

dots.vscode.telemetry-sender

The telemetry sender is the contract between a telemetry logger and some telemetry service. Note that extensions must NOT call the methods of their sender directly as the logger provides extra guards and cleaning.

const sender: vscode.TelemetrySender = {...};
const logger = vscode.env.createTelemetryLogger(sender);

// GOOD - uses the logger
logger.logUsage('myEvent', { myData: 'myValue' });

// BAD - uses the sender directly: no data cleansing, ignores user settings, no echoing to the telemetry output channel etc
sender.logEvent('myEvent', { myData: 'myValue' });
The telemetry sender is the contract between a telemetry logger and some telemetry service. **Note** that extensions must NOT
call the methods of their sender directly as the logger provides extra guards and cleaning.

```js
const sender: vscode.TelemetrySender = {...};
const logger = vscode.env.createTelemetryLogger(sender);

// GOOD - uses the logger
logger.logUsage('myEvent', { myData: 'myValue' });

// BAD - uses the sender directly: no data cleansing, ignores user settings, no echoing to the telemetry output channel etc
sender.logEvent('myEvent', { myData: 'myValue' });
```
raw docstring

dots.vscode.telemetry-trusted-value

A special value wrapper denoting a value that is safe to not clean. This is to be used when you can guarantee no identifiable information is contained in the value and the cleaning is improperly redacting it.

A special value wrapper denoting a value that is safe to not clean.
This is to be used when you can guarantee no identifiable information is contained in the value and the cleaning is improperly redacting it.
raw docstring

dots.vscode.terminal

An individual terminal instance within the integrated terminal.

An individual terminal instance within the integrated terminal.
raw docstring

dots.vscode.terminal-dimensions

Represents the dimensions of a terminal.

Represents the dimensions of a terminal.
raw docstring

dots.vscode.terminal-editor-location-options

Assumes a {@link TerminalLocation } of editor and allows specifying a {@link ViewColumn } and {@link TerminalEditorLocationOptions.preserveFocus preserveFocus } property

Assumes a {@link TerminalLocation } of editor and allows specifying a {@link ViewColumn } and
{@link TerminalEditorLocationOptions.preserveFocus preserveFocus } property
raw docstring

dots.vscode.terminal-exit-reason

Terminal exit reason kind.

Terminal exit reason kind.
raw docstring

dots.vscode.terminal-exit-status

Represents how a terminal exited.

Represents how a terminal exited.
raw docstring

dots.vscode.terminal-link-context

Provides information on a line in a terminal in order to provide links for it.

Provides information on a line in a terminal in order to provide links for it.
raw docstring

dots.vscode.terminal-link-provider

A provider that enables detection and handling of links within terminals.

A provider that enables detection and handling of links within terminals.
raw docstring

dots.vscode.terminal-location

The location of the terminal.

The location of the terminal.
raw docstring

dots.vscode.terminal-profile

A terminal profile defines how a terminal will be launched.

A terminal profile defines how a terminal will be launched.
raw docstring

dots.vscode.terminal-profile-provider

Provides a terminal profile for the contributed terminal profile when launched via the UI or command.

Provides a terminal profile for the contributed terminal profile when launched via the UI or
command.
raw docstring

dots.vscode.terminal-split-location-options

Uses the parent {@link Terminal }'s location for the terminal

Uses the parent {@link Terminal }'s location for the terminal
raw docstring

dots.vscode.terminal-state

Represents the state of a {@link Terminal }.

Represents the state of a {@link Terminal }.
raw docstring

dots.vscode.test-controller

Entry point to discover and execute tests. It contains {@link TestController.items } which are used to populate the editor UI, and is associated with {@link TestController.createRunProfile run profiles} to allow for tests to be executed.

Entry point to discover and execute tests. It contains {@link TestController.items } which
are used to populate the editor UI, and is associated with
{@link TestController.createRunProfile run profiles} to allow
for tests to be executed.
raw docstring

dots.vscode.test-coverage-count

A class that contains information about a covered resource. A count can be give for lines, branches, and declarations in a file.

A class that contains information about a covered resource. A count can
be give for lines, branches, and declarations in a file.
raw docstring

dots.vscode.test-item

An item shown in the "test explorer" view.

A TestItem can represent either a test suite or a test itself, since they both have similar capabilities.

An item shown in the "test explorer" view.

A `TestItem` can represent either a test suite or a test itself, since
they both have similar capabilities.
raw docstring

dots.vscode.test-item-collection

Collection of test items, found in {@link TestItem.children } and {@link TestController.items }.

Collection of test items, found in {@link TestItem.children } and
{@link TestController.items }.
raw docstring

dots.vscode.test-message

Message associated with the test state. Can be linked to a specific source range -- useful for assertion failures, for example.

Message associated with the test state. Can be linked to a specific
source range -- useful for assertion failures, for example.
raw docstring

dots.vscode.test-run

A TestRun represents an in-progress or completed test run and provides methods to report the state of individual tests in the run.

A TestRun represents an in-progress or completed test run and
provides methods to report the state of individual tests in the run.
raw docstring

dots.vscode.test-run-profile-kind

The kind of executions that {@link TestRunProfile TestRunProfiles} control.

The kind of executions that {@link TestRunProfile TestRunProfiles} control.
raw docstring

dots.vscode.test-run-request

A TestRunRequest is a precursor to a {@link TestRun }, which in turn is created by passing a request to {@link TestController.createTestRun }. The TestRunRequest contains information about which tests should be run, which should not be run, and how they are run (via the {@link TestRunRequest.profile profile}).

In general, TestRunRequests are created by the editor and pass to {@link TestRunProfile.runHandler }, however you can also create test requests and runs outside of the runHandler.

A TestRunRequest is a precursor to a {@link TestRun }, which in turn is
created by passing a request to {@link TestController.createTestRun }. The
TestRunRequest contains information about which tests should be run, which
should not be run, and how they are run (via the {@link TestRunRequest.profile profile}).

In general, TestRunRequests are created by the editor and pass to
{@link TestRunProfile.runHandler }, however you can also create test
requests and runs outside of the `runHandler`.
raw docstring

dots.vscode.test-tag

Tags can be associated with {@link TestItem TestItems} and {@link TestRunProfile TestRunProfiles}. A profile with a tag can only execute tests that include that tag in their {@link TestItem.tags } array.

Tags can be associated with {@link TestItem TestItems} and
{@link TestRunProfile TestRunProfiles}. A profile with a tag can only
execute tests that include that tag in their {@link TestItem.tags } array.
raw docstring

dots.vscode.tests

Namespace for testing functionality. Tests are published by registering {@link TestController } instances, then adding {@link TestItem TestItems}. Controllers may also describe how to run tests by creating one or more {@link TestRunProfile } instances.

Namespace for testing functionality. Tests are published by registering
{@link TestController } instances, then adding {@link TestItem TestItems}.
Controllers may also describe how to run tests by creating one or more
{@link TestRunProfile } instances.
raw docstring

dots.vscode.text-document

Represents a text document, such as a source file. Text documents have {@link TextLine lines} and knowledge about an underlying resource like a file.

Represents a text document, such as a source file. Text documents have
{@link TextLine lines} and knowledge about an underlying resource like a file.
raw docstring

dots.vscode.text-document-change-event

An event describing a transactional {@link TextDocument document} change.

An event describing a transactional {@link TextDocument document} change.
raw docstring

dots.vscode.text-document-change-reason

Reasons for why a text document has changed.

Reasons for why a text document has changed.
raw docstring

dots.vscode.text-document-content-change-event

An event describing an individual change in the text of a {@link TextDocument document}.

An event describing an individual change in the text of a {@link TextDocument document}.
raw docstring

dots.vscode.text-document-content-provider

A text document content provider allows to add readonly documents to the editor, such as source from a dll or generated html from md.

Content providers are {@link workspace.registerTextDocumentContentProvider registered} for a {@link Uri.scheme uri-scheme}. When a uri with that scheme is to be {@link workspace.openTextDocument loaded} the content provider is asked.

A text document content provider allows to add readonly documents
to the editor, such as source from a dll or generated html from md.

Content providers are {@link workspace.registerTextDocumentContentProvider registered}
for a {@link Uri.scheme uri-scheme}. When a uri with that scheme is to
be {@link workspace.openTextDocument loaded} the content provider is
asked.
raw docstring

dots.vscode.text-document-save-reason

Represents reasons why a text document is saved.

Represents reasons why a text document is saved.
raw docstring

dots.vscode.text-document-show-options

Represents options to configure the behavior of showing a {@link TextDocument document} in an {@link TextEditor editor}.

Represents options to configure the behavior of showing a {@link TextDocument document} in an {@link TextEditor editor}.
raw docstring

dots.vscode.text-document-will-save-event

An event that is fired when a {@link TextDocument document} will be saved.

To make modifications to the document before it is being saved, call the {@linkcode TextDocumentWillSaveEvent.waitUntil waitUntil}-function with a thenable that resolves to an array of {@link TextEdit text edits}.

An event that is fired when a {@link TextDocument document} will be saved.

To make modifications to the document before it is being saved, call the
{@linkcode TextDocumentWillSaveEvent.waitUntil waitUntil}-function with a thenable
that resolves to an array of {@link TextEdit text edits}.
raw docstring

dots.vscode.text-edit

A text edit represents edits that should be applied to a document.

A text edit represents edits that should be applied
to a document.
raw docstring

dots.vscode.text-editor

Represents an editor that is attached to a {@link TextDocument document}.

Represents an editor that is attached to a {@link TextDocument document}.
raw docstring

dots.vscode.text-editor-decoration-type

Represents a handle to a set of decorations sharing the same {@link DecorationRenderOptions styling options} in a {@link TextEditor text editor}.

To get an instance of a TextEditorDecorationType use {@link window.createTextEditorDecorationType createTextEditorDecorationType}.

Represents a handle to a set of decorations
sharing the same {@link DecorationRenderOptions styling options} in a {@link TextEditor text editor}.

To get an instance of a `TextEditorDecorationType` use
{@link window.createTextEditorDecorationType createTextEditorDecorationType}.
raw docstring

dots.vscode.text-editor-edit

A complex edit that will be applied in one transaction on a TextEditor. This holds a description of the edits and if the edits are valid (i.e. no overlapping regions, document was not changed in the meantime, etc.) they can be applied on a {@link TextDocument document} associated with a {@link TextEditor text editor}.

A complex edit that will be applied in one transaction on a TextEditor.
This holds a description of the edits and if the edits are valid (i.e. no overlapping regions, document was not changed in the meantime, etc.)
they can be applied on a {@link TextDocument document} associated with a {@link TextEditor text editor}.
raw docstring

dots.vscode.text-editor-line-numbers-style

Rendering style of the line numbers.

Rendering style of the line numbers.
raw docstring

dots.vscode.text-editor-options

Represents a {@link TextEditor text editor}'s {@link TextEditor.options options}.

Represents a {@link TextEditor text editor}'s {@link TextEditor.options options}.
raw docstring

dots.vscode.text-editor-options-change-event

Represents an event describing the change in a {@link TextEditor.options text editor's options}.

Represents an event describing the change in a {@link TextEditor.options text editor's options}.
raw docstring

dots.vscode.text-editor-reveal-type

Represents different {@link TextEditor.revealRange reveal} strategies in a text editor.

Represents different {@link TextEditor.revealRange reveal} strategies in a text editor.
raw docstring

dots.vscode.text-editor-selection-change-event

Represents an event describing the change in a {@link TextEditor.selections text editor's selections}.

Represents an event describing the change in a {@link TextEditor.selections text editor's selections}.
raw docstring

dots.vscode.text-editor-selection-change-kind

Represents sources that can cause {@link window.onDidChangeTextEditorSelection selection change events}.

Represents sources that can cause {@link window.onDidChangeTextEditorSelection selection change events}.
raw docstring

dots.vscode.text-editor-view-column-change-event

Represents an event describing the change of a {@link TextEditor.viewColumn text editor's view column}.

Represents an event describing the change of a {@link TextEditor.viewColumn text editor's view column}.
raw docstring

dots.vscode.text-editor-visible-ranges-change-event

Represents an event describing the change in a {@link TextEditor.visibleRanges text editor's visible ranges}.

Represents an event describing the change in a {@link TextEditor.visibleRanges text editor's visible ranges}.
raw docstring

dots.vscode.text-line

Represents a line of text, such as a line of source code.

TextLine objects are immutable. When a {@link TextDocument document} changes, previously retrieved lines will not represent the latest state.

Represents a line of text, such as a line of source code.

TextLine objects are __immutable__. When a {@link TextDocument document} changes,
previously retrieved lines will not represent the latest state.
raw docstring

dots.vscode.themable-decoration-attachment-render-options

Represents theme specific rendeirng styles for {@link ThemableDecorationRenderOptions.before before} and {@link ThemableDecorationRenderOptions.after after} the content of text decorations.

Represents theme specific rendeirng styles for {@link ThemableDecorationRenderOptions.before before} and
{@link ThemableDecorationRenderOptions.after after} the content of text decorations.
raw docstring

dots.vscode.themable-decoration-instance-render-options

Represents themable render options for decoration instances.

Represents themable render options for decoration instances.
raw docstring

dots.vscode.theme-icon

A reference to a named icon. Currently, {@link ThemeIcon.File File}, {@link ThemeIcon.Folder Folder}, and ThemeIcon ids are supported. Using a theme icon is preferred over a custom icon as it gives product theme authors the possibility to change the icons.

Note that theme icons can also be rendered inside labels and descriptions. Places that support theme icons spell this out and they use the $(<name>)-syntax, for instance quickPick.label = "Hello World $(globe)".

A reference to a named icon. Currently, {@link ThemeIcon.File File}, {@link ThemeIcon.Folder Folder},
and [ThemeIcon ids](https://code.visualstudio.com/api/references/icons-in-labels#icon-listing) are supported.
Using a theme icon is preferred over a custom icon as it gives product theme authors the possibility to change the icons.

*Note* that theme icons can also be rendered inside labels and descriptions. Places that support theme icons spell this out
and they use the `$(<name>)`-syntax, for instance `quickPick.label = "Hello World $(globe)"`.
raw docstring

dots.vscode.tree-checkbox-change-event

An event describing the change in a tree item's checkbox state.

An event describing the change in a tree item's checkbox state.
raw docstring

dots.vscode.tree-drag-and-drop-controller

Provides support for drag and drop in TreeView.

Provides support for drag and drop in `TreeView`.
raw docstring

dots.vscode.tree-item

A tree item is an UI element of the tree. Tree items are created by the {@link TreeDataProvider data provider}.

A tree item is an UI element of the tree. Tree items are created by the {@link TreeDataProvider data provider}.
raw docstring

dots.vscode.tree-item-checkbox-state

Checkbox state of the tree item

Checkbox state of the tree item
raw docstring

dots.vscode.tree-item-collapsible-state

Collapsible state of the tree item

Collapsible state of the tree item
raw docstring

dots.vscode.tree-item-label

Label describing the {@link TreeItem Tree item}

Label describing the {@link TreeItem Tree item}
raw docstring

dots.vscode.tree-view-expansion-event

The event that is fired when an element in the {@link TreeView } is expanded or collapsed

The event that is fired when an element in the {@link TreeView } is expanded or collapsed
raw docstring

dots.vscode.tree-view-selection-change-event

The event that is fired when there is a change in {@link TreeView.selection tree view's selection}

The event that is fired when there is a change in {@link TreeView.selection tree view's selection}
raw docstring

dots.vscode.tree-view-visibility-change-event

The event that is fired when there is a change in {@link TreeView.visible tree view's visibility}

The event that is fired when there is a change in {@link TreeView.visible tree view's visibility}
raw docstring

dots.vscode.type-definition-provider

The type definition provider defines the contract between extensions and the go to type definition feature.

The type definition provider defines the contract between extensions and
the go to type definition feature.
raw docstring

dots.vscode.type-hierarchy-item

Represents an item of a type hierarchy, like a class or an interface.

Represents an item of a type hierarchy, like a class or an interface.
raw docstring

dots.vscode.type-hierarchy-provider

The type hierarchy provider interface describes the contract between extensions and the type hierarchy feature.

The type hierarchy provider interface describes the contract between extensions
and the type hierarchy feature.
raw docstring

dots.vscode.ui-kind

Possible kinds of UI that can use extensions.

Possible kinds of UI that can use extensions.
raw docstring

dots.vscode.uri

A universal resource identifier representing either a file on disk or another resource, like untitled resources.

A universal resource identifier representing either a file on disk
or another resource, like untitled resources.
raw docstring

dots.vscode.uri-handler

A uri handler is responsible for handling system-wide {@link Uri uris}.

A uri handler is responsible for handling system-wide {@link Uri uris}.
raw docstring

dots.vscode.view-badge

A badge presenting a value for a view

A badge presenting a value for a view
raw docstring

dots.vscode.view-column

Denotes a location of an editor in the window. Editors can be arranged in a grid and each column represents one editor location in that grid by counting the editors in order of their appearance.

Denotes a location of an editor in the window. Editors can be arranged in a grid
and each column represents one editor location in that grid by counting the editors
in order of their appearance.
raw docstring

dots.vscode.webview

Displays html content, similarly to an iframe.

Displays html content, similarly to an iframe.
raw docstring

dots.vscode.webview-panel-on-did-change-view-state-event

Event fired when a webview panel's view state changes.

Event fired when a webview panel's view state changes.
raw docstring

dots.vscode.webview-panel-options

Content settings for a webview panel.

Content settings for a webview panel.
raw docstring

dots.vscode.webview-panel-serializer

Restore webview panels that have been persisted when vscode shuts down.

There are two types of webview persistence:

  • Persistence within a session.
  • Persistence across sessions (across restarts of the editor).

A WebviewPanelSerializer is only required for the second case: persisting a webview across sessions.

Persistence within a session allows a webview to save its state when it becomes hidden and restore its content from this state when it becomes visible again. It is powered entirely by the webview content itself. To save off a persisted state, call acquireVsCodeApi().setState() with any json serializable object. To restore the state again, call getState()

// Within the webview
const vscode = acquireVsCodeApi();

// Get existing state
const oldState = vscode.getState() || { value: 0 };

// Update state
setState({ value: oldState.value + 1 })

A WebviewPanelSerializer extends this persistence across restarts of the editor. When the editor is shutdown, it will save off the state from setState of all webviews that have a serializer. When the webview first becomes visible after the restart, this state is passed to deserializeWebviewPanel. The extension can then restore the old WebviewPanel from this state.

Restore webview panels that have been persisted when vscode shuts down.

There are two types of webview persistence:

- Persistence within a session.
- Persistence across sessions (across restarts of the editor).

A `WebviewPanelSerializer` is only required for the second case: persisting a webview across sessions.

Persistence within a session allows a webview to save its state when it becomes hidden
and restore its content from this state when it becomes visible again. It is powered entirely
by the webview content itself. To save off a persisted state, call `acquireVsCodeApi().setState()` with
any json serializable object. To restore the state again, call `getState()`

```js
// Within the webview
const vscode = acquireVsCodeApi();

// Get existing state
const oldState = vscode.getState() || { value: 0 };

// Update state
setState({ value: oldState.value + 1 })
```

A `WebviewPanelSerializer` extends this persistence across restarts of the editor. When the editor is shutdown,
it will save off the state from `setState` of all webviews that have a serializer. When the
webview first becomes visible after the restart, this state is passed to `deserializeWebviewPanel`.
The extension can then restore the old `WebviewPanel` from this state.
raw docstring

dots.vscode.webview-port-mapping

Defines a port mapping used for localhost inside the webview.

Defines a port mapping used for localhost inside the webview.
raw docstring

dots.vscode.webview-view-provider

Provider for creating WebviewView elements.

Provider for creating `WebviewView` elements.
raw docstring

dots.vscode.webview-view-resolve-context

Additional information the webview view being resolved.

Additional information the webview view being resolved.
raw docstring

dots.vscode.window

Namespace for dealing with the current window of the editor. That is visible and active editors, as well as, UI elements to show messages, selections, and asking for user input.

Namespace for dealing with the current window of the editor. That is visible
and active editors, as well as, UI elements to show messages, selections, and
asking for user input.
raw docstring

dots.vscode.window-state

Represents the state of a window.

Represents the state of a window.
raw docstring

dots.vscode.window.active-color-theme

The currently active color theme as configured in the settings. The active theme can be changed via the workbench.colorTheme setting.

The currently active color theme as configured in the settings. The active
theme can be changed via the `workbench.colorTheme` setting.
raw docstring

dots.vscode.window.active-notebook-editor

The currently active {@link NotebookEditor notebook editor} or undefined. The active editor is the one that currently has focus or, when none has focus, the one that has changed input most recently.

The currently active {@link NotebookEditor notebook editor} or `undefined`. The active editor is the one
that currently has focus or, when none has focus, the one that has changed
input most recently.
raw docstring

dots.vscode.window.active-terminal

The currently active terminal or undefined. The active terminal is the one that currently has focus or most recently had focus.

The currently active terminal or `undefined`. The active terminal is the one that
currently has focus or most recently had focus.
raw docstring

dots.vscode.window.active-text-editor

The currently active editor or undefined. The active editor is the one that currently has focus or, when none has focus, the one that has changed input most recently.

The currently active editor or `undefined`. The active editor is the one
that currently has focus or, when none has focus, the one that has changed
input most recently.
raw docstring

dots.vscode.window.state

Represents the current window's state.

Represents the current window's state.
raw docstring

dots.vscode.window.tab-groups

Represents the grid widget within the main editor area

Represents the grid widget within the main editor area
raw docstring

dots.vscode.workspace

Namespace for dealing with the current workspace. A workspace is the collection of one or more folders that are opened in an editor window (instance).

It is also possible to open an editor without a workspace. For example, when you open a new editor window by selecting a file from your platform's File menu, you will not be inside a workspace. In this mode, some of the editor's capabilities are reduced but you can still open text files and edit them.

Refer to https://code.visualstudio.com/docs/editor/workspaces for more information on the concept of workspaces.

The workspace offers support for {@link workspace.createFileSystemWatcher listening} to fs events and for {@link workspace.findFiles finding} files. Both perform well and run outside the editor-process so that they should be always used instead of nodejs-equivalents.

Namespace for dealing with the current workspace. A workspace is the collection of one
or more folders that are opened in an editor window (instance).

It is also possible to open an editor without a workspace. For example, when you open a
new editor window by selecting a file from your platform's File menu, you will not be
inside a workspace. In this mode, some of the editor's capabilities are reduced but you can
still open text files and edit them.

Refer to https://code.visualstudio.com/docs/editor/workspaces for more information on
the concept of workspaces.

The workspace offers support for {@link workspace.createFileSystemWatcher listening} to fs
events and for {@link workspace.findFiles finding} files. Both perform well and run _outside_
the editor-process so that they should be always used instead of nodejs-equivalents.
raw docstring

dots.vscode.workspace-configuration

Represents the configuration. It is a merged view of

  • Default Settings
  • Global (User) Settings
  • Workspace settings
  • Workspace Folder settings - From one of the {@link workspace.workspaceFolders Workspace Folders} under which requested resource belongs to.
  • Language settings - Settings defined under requested language.

The effective value (returned by {@linkcode WorkspaceConfiguration.get get}) is computed by overriding or merging the values in the following order:

  1. defaultValue (if defined in package.json otherwise derived from the value's type)
  2. globalValue (if defined)
  3. workspaceValue (if defined)
  4. workspaceFolderValue (if defined)
  5. defaultLanguageValue (if defined)
  6. globalLanguageValue (if defined)
  7. workspaceLanguageValue (if defined)
  8. workspaceFolderLanguageValue (if defined)

Note: Only object value types are merged and all other value types are overridden.

Example 1: Overriding

defaultValue = 'on';
globalValue = 'relative'
workspaceFolderValue = 'off'
value = 'off'

Example 2: Language Values

defaultValue = 'on';
globalValue = 'relative'
workspaceFolderValue = 'off'
globalLanguageValue = 'on'
value = 'on'

Example 3: Object Values

defaultValue = { "a": 1, "b": 2 };
globalValue = { "b": 3, "c": 4 };
value = { "a": 1, "b": 3, "c": 4 };

Note: Workspace and Workspace Folder configurations contains launch and tasks settings. Their basename will be part of the section identifier. The following snippets shows how to retrieve all configurations from launch.json:

// launch.json configuration
const config = workspace.getConfiguration('launch', vscode.workspace.workspaceFolders[0].uri);

// retrieve values
const values = config.get('configurations');

Refer to Settings for more information.

Represents the configuration. It is a merged view of

- *Default Settings*
- *Global (User) Settings*
- *Workspace settings*
- *Workspace Folder settings* - From one of the {@link workspace.workspaceFolders Workspace Folders} under which requested resource belongs to.
- *Language settings* - Settings defined under requested language.

The *effective* value (returned by {@linkcode WorkspaceConfiguration.get get}) is computed by overriding or merging the values in the following order:

1. `defaultValue` (if defined in `package.json` otherwise derived from the value's type)
1. `globalValue` (if defined)
1. `workspaceValue` (if defined)
1. `workspaceFolderValue` (if defined)
1. `defaultLanguageValue` (if defined)
1. `globalLanguageValue` (if defined)
1. `workspaceLanguageValue` (if defined)
1. `workspaceFolderLanguageValue` (if defined)

**Note:** Only `object` value types are merged and all other value types are overridden.

Example 1: Overriding

```ts
defaultValue = 'on';
globalValue = 'relative'
workspaceFolderValue = 'off'
value = 'off'
```

Example 2: Language Values

```ts
defaultValue = 'on';
globalValue = 'relative'
workspaceFolderValue = 'off'
globalLanguageValue = 'on'
value = 'on'
```

Example 3: Object Values

```ts
defaultValue = { "a": 1, "b": 2 };
globalValue = { "b": 3, "c": 4 };
value = { "a": 1, "b": 3, "c": 4 };
```

*Note:* Workspace and Workspace Folder configurations contains `launch` and `tasks` settings. Their basename will be
part of the section identifier. The following snippets shows how to retrieve all configurations
from `launch.json`:

```ts
// launch.json configuration
const config = workspace.getConfiguration('launch', vscode.workspace.workspaceFolders[0].uri);

// retrieve values
const values = config.get('configurations');
```

Refer to [Settings](https://code.visualstudio.com/docs/getstarted/settings) for more information.
raw docstring

dots.vscode.workspace-edit

A workspace edit is a collection of textual and files changes for multiple resources and documents.

Use the {@link workspace.applyEdit applyEdit}-function to apply a workspace edit.

A workspace edit is a collection of textual and files changes for
multiple resources and documents.

Use the {@link workspace.applyEdit applyEdit}-function to apply a workspace edit.
raw docstring

dots.vscode.workspace-edit-entry-metadata

Additional data for entries of a workspace edit. Supports to label entries and marks entries as needing confirmation by the user. The editor groups edits with equal labels into tree nodes, for instance all edits labelled with "Changes in Strings" would be a tree node.

Additional data for entries of a workspace edit. Supports to label entries and marks entries
as needing confirmation by the user. The editor groups edits with equal labels into tree nodes,
for instance all edits labelled with "Changes in Strings" would be a tree node.
raw docstring

dots.vscode.workspace-edit-metadata

Additional data about a workspace edit.

Additional data about a workspace edit.
raw docstring

dots.vscode.workspace-folder

A workspace folder is one of potentially many roots opened by the editor. All workspace folders are equal which means there is no notion of an active or primary workspace folder.

A workspace folder is one of potentially many roots opened by the editor. All workspace folders
are equal which means there is no notion of an active or primary workspace folder.
raw docstring

dots.vscode.workspace-folder-pick-options

Options to configure the behaviour of the {@link WorkspaceFolder workspace folder} pick UI.

Options to configure the behaviour of the {@link WorkspaceFolder workspace folder} pick UI.
raw docstring

dots.vscode.workspace-folders-change-event

An event describing a change to the set of {@link workspace.workspaceFolders workspace folders}.

An event describing a change to the set of {@link workspace.workspaceFolders workspace folders}.
raw docstring

dots.vscode.workspace-symbol-provider

The workspace symbol provider interface defines the contract between extensions and the symbol search-feature.

The workspace symbol provider interface defines the contract between extensions and
the [symbol search](https://code.visualstudio.com/docs/editor/editingevolved#_open-symbol-by-name)-feature.
raw docstring

dots.vscode.workspace.fs

A {@link FileSystem file system} instance that allows to interact with local and remote files, e.g. vscode.workspace.fs.readDirectory(someUri) allows to retrieve all entries of a directory or vscode.workspace.fs.stat(anotherUri) returns the meta data for a file.

A {@link FileSystem file system} instance that allows to interact with local and remote
files, e.g. `vscode.workspace.fs.readDirectory(someUri)` allows to retrieve all entries
of a directory or `vscode.workspace.fs.stat(anotherUri)` returns the meta data for a
file.
raw docstring

dots.vscode.workspace.workspace-file

The location of the workspace file, for example:

file:///Users/name/Development/myProject.code-workspace

or

untitled:1555503116870

for a workspace that is untitled and not yet saved.

Depending on the workspace that is opened, the value will be:

  • undefined when no workspace is opened
  • the path of the workspace file as Uri otherwise. if the workspace is untitled, the returned URI will use the untitled: scheme

The location can e.g. be used with the vscode.openFolder command to open the workspace again after it has been closed.

Example:

vscode.commands.executeCommand('vscode.openFolder', uriOfWorkspace);

Refer to https://code.visualstudio.com/docs/editor/workspaces for more information on the concept of workspaces.

Note: it is not advised to use workspace.workspaceFile to write configuration data into the file. You can use workspace.getConfiguration().update() for that purpose which will work both when a single folder is opened as well as an untitled or saved workspace.

The location of the workspace file, for example:

`file:///Users/name/Development/myProject.code-workspace`

or

`untitled:1555503116870`

for a workspace that is untitled and not yet saved.

Depending on the workspace that is opened, the value will be:
 * `undefined` when no workspace is opened
 * the path of the workspace file as `Uri` otherwise. if the workspace
is untitled, the returned URI will use the `untitled:` scheme

The location can e.g. be used with the `vscode.openFolder` command to
open the workspace again after it has been closed.

**Example:**
```typescript
vscode.commands.executeCommand('vscode.openFolder', uriOfWorkspace);
```

Refer to https://code.visualstudio.com/docs/editor/workspaces for more information on
the concept of workspaces.

**Note:** it is not advised to use `workspace.workspaceFile` to write
configuration data into the file. You can use `workspace.getConfiguration().update()`
for that purpose which will work both when a single folder is opened as
well as an untitled or saved workspace.
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close