mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Merge from vscode 4d91d96e5e121b38d33508cdef17868bab255eae
This commit is contained in:
committed by
AzureDataStudio
parent
a971aee5bd
commit
5e7071e466
373
src/vs/vscode.d.ts
vendored
373
src/vs/vscode.d.ts
vendored
@@ -1290,7 +1290,7 @@ declare module 'vscode' {
|
||||
* The path segments are normalized in the following ways:
|
||||
* - sequences of path separators (`/` or `\`) are replaced with a single separator
|
||||
* - for `file`-uris on windows, the backslash-character (`\`) is considered a path-separator
|
||||
* - the `..`-segment denotes the parent segment, the `.` denotes the current segement
|
||||
* - the `..`-segment denotes the parent segment, the `.` denotes the current segment
|
||||
* - paths have a root which always remains, for instance on windows drive-letters are roots
|
||||
* so that is true: `joinPath(Uri.file('file:///c:/root'), '../../other').fsPath === 'c:/other'`
|
||||
*
|
||||
@@ -2414,6 +2414,11 @@ declare module 'vscode' {
|
||||
*/
|
||||
isTrusted?: boolean;
|
||||
|
||||
/**
|
||||
* Indicates that this markdown string can contain [ThemeIcons](#ThemeIcon), e.g. `$(zap)`.
|
||||
*/
|
||||
readonly supportThemeIcons?: boolean;
|
||||
|
||||
/**
|
||||
* Creates a new markdown string with the given value.
|
||||
*
|
||||
@@ -4376,7 +4381,7 @@ declare module 'vscode' {
|
||||
}
|
||||
|
||||
/**
|
||||
* The call hierarchy provider interface describes the constract between extensions
|
||||
* 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.
|
||||
*/
|
||||
@@ -5415,6 +5420,30 @@ declare module 'vscode' {
|
||||
activate(): Thenable<T>;
|
||||
}
|
||||
|
||||
/**
|
||||
* The ExtensionMode is provided on the `ExtensionContext` and indicates the
|
||||
* mode the specific extension is running in.
|
||||
*/
|
||||
export enum ExtensionMode {
|
||||
/**
|
||||
* The extension is installed normally (for example, from the marketplace
|
||||
* or VSIX) in VS Code.
|
||||
*/
|
||||
Production = 1,
|
||||
|
||||
/**
|
||||
* The extension is running from an `--extensionDevelopmentPath` provided
|
||||
* when launching VS Code.
|
||||
*/
|
||||
Development = 2,
|
||||
|
||||
/**
|
||||
* The extension is running from an `--extensionTestsPath` and
|
||||
* the extension host is running unit tests.
|
||||
*/
|
||||
Test = 3,
|
||||
}
|
||||
|
||||
/**
|
||||
* An extension context is a collection of utilities private to an
|
||||
* extension.
|
||||
@@ -5492,6 +5521,13 @@ declare module 'vscode' {
|
||||
* the parent directory is guaranteed to be existent.
|
||||
*/
|
||||
readonly logPath: string;
|
||||
|
||||
/**
|
||||
* The mode the extension is running in. This is specific to the current
|
||||
* extension. One extension may be in `ExtensionMode.Development` while
|
||||
* other extensions in the host run in `ExtensionMode.Release`.
|
||||
*/
|
||||
readonly extensionMode: ExtensionMode;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -5922,7 +5958,7 @@ declare module 'vscode' {
|
||||
*/
|
||||
export enum TaskScope {
|
||||
/**
|
||||
* The task is a global task. Global tasks are currrently not supported.
|
||||
* The task is a global task. Global tasks are currently not supported.
|
||||
*/
|
||||
Global = 1,
|
||||
|
||||
@@ -6896,12 +6932,15 @@ declare module 'vscode' {
|
||||
* This is called when a user first opens a resource for a `CustomTextEditorProvider`, or if they reopen an
|
||||
* existing editor using this `CustomTextEditorProvider`.
|
||||
*
|
||||
* To resolve a custom editor, the provider must fill in its initial html content and hook up all
|
||||
* the event listeners it is interested it. The provider can also hold onto the `WebviewPanel` to use later,
|
||||
* for example in a command. See [`WebviewPanel`](#WebviewPanel) for additional details.
|
||||
*
|
||||
* @param document Document for the resource to resolve.
|
||||
* @param webviewPanel Webview to resolve.
|
||||
*
|
||||
* @param webviewPanel The webview panel used to display the editor UI for this resource.
|
||||
*
|
||||
* During resolve, the provider must fill in the initial html for the content webview panel and hook up all
|
||||
* the event listeners on it that it is interested in. The provider can also hold onto the `WebviewPanel` to
|
||||
* use later for example in a command. See [`WebviewPanel`](#WebviewPanel) for additional details.
|
||||
*
|
||||
* @param token A cancellation token that indicates the result is no longer needed.
|
||||
*
|
||||
* @return Thenable indicating that the custom editor has been resolved.
|
||||
@@ -6909,6 +6948,285 @@ declare module 'vscode' {
|
||||
resolveCustomTextEditor(document: TextDocument, webviewPanel: WebviewPanel, token: CancellationToken): Thenable<void> | void;
|
||||
}
|
||||
|
||||
/**
|
||||
* Represents a custom document used by a [`CustomEditorProvider`](#CustomEditorProvider).
|
||||
*
|
||||
* Custom documents are only used within a given `CustomEditorProvider`. The lifecycle of a `CustomDocument` is
|
||||
* managed by VS Code. When no more references remain to a `CustomDocument`, it is disposed of.
|
||||
*/
|
||||
interface CustomDocument {
|
||||
/**
|
||||
* The associated uri for this document.
|
||||
*/
|
||||
readonly uri: Uri;
|
||||
|
||||
/**
|
||||
* Dispose of the custom document.
|
||||
*
|
||||
* This is invoked by VS Code when there are no more references to a given `CustomDocument` (for example when
|
||||
* all editors associated with the document have been closed.)
|
||||
*/
|
||||
dispose(): void;
|
||||
}
|
||||
|
||||
/**
|
||||
* Event triggered by extensions to signal to VS Code that an edit has occurred on an [`CustomDocument`](#CustomDocument).
|
||||
*
|
||||
* @see [`CustomDocumentProvider.onDidChangeCustomDocument`](#CustomDocumentProvider.onDidChangeCustomDocument).
|
||||
*/
|
||||
interface CustomDocumentEditEvent<T extends CustomDocument = CustomDocument> {
|
||||
|
||||
/**
|
||||
* The document that the edit is for.
|
||||
*/
|
||||
readonly document: T;
|
||||
|
||||
/**
|
||||
* Undo the edit operation.
|
||||
*
|
||||
* This is invoked by VS Code when the user undoes this edit. To implement `undo`, your
|
||||
* extension should restore the document and editor to the state they were in just before this
|
||||
* edit was added to VS Code's internal edit stack by `onDidChangeCustomDocument`.
|
||||
*/
|
||||
undo(): Thenable<void> | void;
|
||||
|
||||
/**
|
||||
* Redo the edit operation.
|
||||
*
|
||||
* This is invoked by VS Code when the user redoes this edit. To implement `redo`, your
|
||||
* extension should restore the document and editor to the state they were in just after this
|
||||
* edit was added to VS Code's internal edit stack by `onDidChangeCustomDocument`.
|
||||
*/
|
||||
redo(): Thenable<void> | void;
|
||||
|
||||
/**
|
||||
* Display name describing the edit.
|
||||
*
|
||||
* This will be shown to users in the UI for undo/redo operations.
|
||||
*/
|
||||
readonly label?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Event triggered by extensions to signal to VS Code that the content of a [`CustomDocument`](#CustomDocument)
|
||||
* has changed.
|
||||
*
|
||||
* @see [`CustomDocumentProvider.onDidChangeCustomDocument`](#CustomDocumentProvider.onDidChangeCustomDocument).
|
||||
*/
|
||||
interface CustomDocumentContentChangeEvent<T extends CustomDocument = CustomDocument> {
|
||||
/**
|
||||
* The document that the change is for.
|
||||
*/
|
||||
readonly document: T;
|
||||
}
|
||||
|
||||
/**
|
||||
* A backup for an [`CustomDocument`](#CustomDocument).
|
||||
*/
|
||||
interface CustomDocumentBackup {
|
||||
/**
|
||||
* Unique identifier for the backup.
|
||||
*
|
||||
* This id is passed back to your extension in `openCustomDocument` when opening a custom editor from a backup.
|
||||
*/
|
||||
readonly id: string;
|
||||
|
||||
/**
|
||||
* Delete the current backup.
|
||||
*
|
||||
* This is called by VS Code when it is clear the current backup is no longer needed, such as when a new backup
|
||||
* is made or when the file is saved.
|
||||
*/
|
||||
delete(): void;
|
||||
}
|
||||
|
||||
/**
|
||||
* Additional information used to implement [`CustomEditableDocument.backup`](#CustomEditableDocument.backup).
|
||||
*/
|
||||
interface CustomDocumentBackupContext {
|
||||
/**
|
||||
* Suggested file location to write the new backup.
|
||||
*
|
||||
* Note that your extension is free to ignore this and use its own strategy for backup.
|
||||
*
|
||||
* If the editor is for a resource from the current workspace, `destination` will point to a file inside
|
||||
* `ExtensionContext.storagePath`. The parent folder of `destination` may not exist, so make sure to created it
|
||||
* before writing the backup to this location.
|
||||
*/
|
||||
readonly destination: Uri;
|
||||
}
|
||||
|
||||
/**
|
||||
* Additional information about the opening custom document.
|
||||
*/
|
||||
interface CustomDocumentOpenContext {
|
||||
/**
|
||||
* The id of the backup to restore the document from or `undefined` if there is no backup.
|
||||
*
|
||||
* If this is provided, your extension should restore the editor from the backup instead of reading the file
|
||||
* from the user's workspace.
|
||||
*/
|
||||
readonly backupId?: string;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provider for readonly custom editors that use a custom document model.
|
||||
*
|
||||
* Custom editors use [`CustomDocument`](#CustomDocument) as their document model instead of a [`TextDocument`](#TextDocument).
|
||||
*
|
||||
* You should use this type of custom editor when dealing with binary files or more complex scenarios. For simple
|
||||
* text based documents, use [`CustomTextEditorProvider`](#CustomTextEditorProvider) instead.
|
||||
*
|
||||
* @param T Type of the custom document returned by this provider.
|
||||
*/
|
||||
export interface CustomReadonlyEditorProvider<T extends CustomDocument = CustomDocument> {
|
||||
|
||||
/**
|
||||
* Create a new document for a given resource.
|
||||
*
|
||||
* `openCustomDocument` is called when the first time an editor for a given resource is opened. The opened
|
||||
* document is then passed to `resolveCustomEditor` so that the editor can be shown to the user.
|
||||
*
|
||||
* Already opened `CustomDocument` are re-used if the user opened additional editors. When all editors for a
|
||||
* given resource are closed, the `CustomDocument` is disposed of. Opening an editor at this point will
|
||||
* trigger another call to `openCustomDocument`.
|
||||
*
|
||||
* @param uri Uri of the document to open.
|
||||
* @param openContext Additional information about the opening custom document.
|
||||
* @param token A cancellation token that indicates the result is no longer needed.
|
||||
*
|
||||
* @return The custom document.
|
||||
*/
|
||||
openCustomDocument(uri: Uri, openContext: CustomDocumentOpenContext, token: CancellationToken): Thenable<T> | T;
|
||||
|
||||
/**
|
||||
* Resolve a custom editor for a given resource.
|
||||
*
|
||||
* This is called whenever the user opens a new editor for this `CustomEditorProvider`.
|
||||
*
|
||||
* @param document Document for the resource being resolved.
|
||||
*
|
||||
* @param webviewPanel The webview panel used to display the editor UI for this resource.
|
||||
*
|
||||
* During resolve, the provider must fill in the initial html for the content webview panel and hook up all
|
||||
* the event listeners on it that it is interested in. The provider can also hold onto the `WebviewPanel` to
|
||||
* use later for example in a command. See [`WebviewPanel`](#WebviewPanel) for additional details.
|
||||
*
|
||||
* @param token A cancellation token that indicates the result is no longer needed.
|
||||
*
|
||||
* @return Optional thenable indicating that the custom editor has been resolved.
|
||||
*/
|
||||
resolveCustomEditor(document: T, webviewPanel: WebviewPanel, token: CancellationToken): Thenable<void> | void;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provider for editable custom editors that use a custom document model.
|
||||
*
|
||||
* Custom editors use [`CustomDocument`](#CustomDocument) as their document model instead of a [`TextDocument`](#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 [`CustomTextEditorProvider`](#CustomTextEditorProvider) instead.
|
||||
*
|
||||
* @param T Type of the custom document returned by this provider.
|
||||
*/
|
||||
export interface CustomEditorProvider<T extends CustomDocument = CustomDocument> extends CustomReadonlyEditorProvider<T> {
|
||||
/**
|
||||
* Signal that an edit has occurred inside a custom editor.
|
||||
*
|
||||
* This event must be fired by your extension whenever an edit happens in a custom editor. An edit can be
|
||||
* anything from changing some text, to cropping an image, to reordering a list. Your extension is free to
|
||||
* define what an edit is and what data is stored on each edit.
|
||||
*
|
||||
* Firing `onDidChange` causes VS Code to mark the editors as being dirty. This is cleared when the user either
|
||||
* saves or reverts the file.
|
||||
*
|
||||
* Editors that support undo/redo must fire a `CustomDocumentEditEvent` whenever an edit happens. This allows
|
||||
* users to undo and redo the edit using VS Code's standard VS Code keyboard shortcuts. VS Code will also mark
|
||||
* the editor as no longer being dirty if the user undoes all edits to the last saved state.
|
||||
*
|
||||
* Editors that support editing but cannot use VS Code's standard undo/redo mechanism must fire a `CustomDocumentContentChangeEvent`.
|
||||
* The only way for a user to clear the dirty state of an editor that does not support undo/redo is to either
|
||||
* `save` or `revert` the file.
|
||||
*
|
||||
* An editor should only ever fire `CustomDocumentEditEvent` events, or only ever fire `CustomDocumentContentChangeEvent` events.
|
||||
*/
|
||||
readonly onDidChangeCustomDocument: Event<CustomDocumentEditEvent<T>> | Event<CustomDocumentContentChangeEvent<T>>;
|
||||
|
||||
/**
|
||||
* Save a custom document.
|
||||
*
|
||||
* This method is invoked by VS Code when the user saves a custom editor. This can happen when the user
|
||||
* triggers save while the custom editor is active, by commands such as `save all`, or by auto save if enabled.
|
||||
*
|
||||
* To implement `save`, the implementer must persist the custom editor. This usually means writing the
|
||||
* file data for the custom document to disk. After `save` completes, any associated editor instances will
|
||||
* no longer be marked as dirty.
|
||||
*
|
||||
* @param document Document to save.
|
||||
* @param cancellation Token that signals the save is no longer required (for example, if another save was triggered).
|
||||
*
|
||||
* @return Thenable signaling that saving has completed.
|
||||
*/
|
||||
saveCustomDocument(document: T, cancellation: CancellationToken): Thenable<void>;
|
||||
|
||||
/**
|
||||
* Save a custom document to a different location.
|
||||
*
|
||||
* This method is invoked by VS Code when the user triggers 'save as' on a custom editor. The implementer must
|
||||
* persist the custom editor to `destination`.
|
||||
*
|
||||
* When the user accepts save as, the current editor is be replaced by an non-dirty editor for the newly saved file.
|
||||
*
|
||||
* @param document Document to save.
|
||||
* @param destination Location to save to.
|
||||
* @param cancellation Token that signals the save is no longer required.
|
||||
*
|
||||
* @return Thenable signaling that saving has completed.
|
||||
*/
|
||||
saveCustomDocumentAs(document: T, destination: Uri, cancellation: CancellationToken): Thenable<void>;
|
||||
|
||||
/**
|
||||
* Revert a custom document to its last saved state.
|
||||
*
|
||||
* This method is invoked by VS Code when the user triggers `File: Revert File` in a custom editor. (Note that
|
||||
* this is only used using VS Code's `File: Revert File` command and not on a `git revert` of the file).
|
||||
*
|
||||
* To implement `revert`, the implementer must make sure all editor instances (webviews) for `document`
|
||||
* are displaying the document in the same state is saved in. This usually means reloading the file from the
|
||||
* workspace.
|
||||
*
|
||||
* @param document Document to revert.
|
||||
* @param cancellation Token that signals the revert is no longer required.
|
||||
*
|
||||
* @return Thenable signaling that the change has completed.
|
||||
*/
|
||||
revertCustomDocument(document: T, cancellation: CancellationToken): Thenable<void>;
|
||||
|
||||
/**
|
||||
* Back up a dirty custom document.
|
||||
*
|
||||
* Backups are used for hot exit and to prevent data loss. Your `backup` method should persist the resource in
|
||||
* its current state, i.e. with the edits applied. Most commonly this means saving the resource to disk in
|
||||
* the `ExtensionContext.storagePath`. When VS Code reloads and your custom editor is opened for a resource,
|
||||
* your extension should first check to see if any backups exist for the resource. If there is a backup, your
|
||||
* extension should load the file contents from there instead of from the resource in the workspace.
|
||||
*
|
||||
* `backup` is triggered approximately one second after the the user stops editing the document. If the user
|
||||
* rapidly edits the document, `backup` will not be invoked until the editing stops.
|
||||
*
|
||||
* `backup` is not invoked when `auto save` is enabled (since auto save already persists the resource).
|
||||
*
|
||||
* @param document Document to backup.
|
||||
* @param context Information that can be used to backup the document.
|
||||
* @param cancellation Token that signals the current backup since a new backup is coming in. It is up to your
|
||||
* extension to decided how to respond to cancellation. If for example your extension is backing up a large file
|
||||
* in an operation that takes time to complete, your extension may decide to finish the ongoing backup rather
|
||||
* than cancelling it to ensure that VS Code has some valid backup.
|
||||
*/
|
||||
backupCustomDocument(document: T, context: CustomDocumentBackupContext, cancellation: CancellationToken): Thenable<CustomDocumentBackup>;
|
||||
}
|
||||
|
||||
/**
|
||||
* The clipboard provides read and write access to the system's clipboard.
|
||||
*/
|
||||
@@ -7036,7 +7354,7 @@ declare module 'vscode' {
|
||||
*
|
||||
* If the extension is running remotely, this function automatically establishes a port forwarding tunnel
|
||||
* from the local machine to `target` on the remote and returns a local uri to the tunnel. The lifetime of
|
||||
* the port fowarding tunnel is managed by VS Code and the tunnel can be closed by the user.
|
||||
* the port forwarding tunnel is managed by VS Code and the tunnel can be closed by the user.
|
||||
*
|
||||
* *Note* that uris passed through `openExternal` are automatically resolved and you should not call `asExternalUri` on them.
|
||||
*
|
||||
@@ -7750,7 +8068,8 @@ declare module 'vscode' {
|
||||
* Register a provider for custom editors for the `viewType` contributed by the `customEditors` extension point.
|
||||
*
|
||||
* When a custom editor is opened, VS Code fires an `onCustomEditor:viewType` activation event. Your extension
|
||||
* must register a [`CustomTextEditorProvider`](#CustomTextEditorProvider) for `viewType` as part of activation.
|
||||
* must register a [`CustomTextEditorProvider`](#CustomTextEditorProvider), [`CustomReadonlyEditorProvider`](#CustomReadonlyEditorProvider),
|
||||
* [`CustomEditorProvider`](#CustomEditorProvider)for `viewType` as part of activation.
|
||||
*
|
||||
* @param viewType Unique identifier for the custom editor provider. This should match the `viewType` from the
|
||||
* `customEditors` contribution point.
|
||||
@@ -7759,7 +8078,28 @@ declare module 'vscode' {
|
||||
*
|
||||
* @return Disposable that unregisters the provider.
|
||||
*/
|
||||
export function registerCustomEditorProvider(viewType: string, provider: CustomTextEditorProvider, options?: { readonly webviewOptions?: WebviewPanelOptions; }): Disposable;
|
||||
export function registerCustomEditorProvider(viewType: string, provider: CustomTextEditorProvider | CustomReadonlyEditorProvider | CustomEditorProvider, options?: {
|
||||
/**
|
||||
* Content settings for the webview panels created for this custom editor.
|
||||
*/
|
||||
readonly webviewOptions?: WebviewPanelOptions;
|
||||
|
||||
/**
|
||||
* Only applies to `CustomReadonlyEditorProvider | CustomEditorProvider`.
|
||||
*
|
||||
* Indicates that the provider allows multiple editor instances to be open at the same time for
|
||||
* the same resource.
|
||||
*
|
||||
* By default, VS Code only allows one editor instance to be open at a time for each resource. If the
|
||||
* user tries to open a second editor instance for the resource, the first one is instead moved to where
|
||||
* the second one was to be opened.
|
||||
*
|
||||
* When `supportsMultipleEditorsPerDocument` is enabled, users can split and create copies of the custom
|
||||
* editor. In this case, the custom editor must make sure it can properly synchronize the states of all
|
||||
* editor instances for a resource so that they are consistent.
|
||||
*/
|
||||
readonly supportsMultipleEditorsPerDocument?: boolean;
|
||||
}): Disposable;
|
||||
|
||||
/**
|
||||
* The currently active color theme as configured in the settings. The active
|
||||
@@ -8104,8 +8444,9 @@ declare module 'vscode' {
|
||||
interface Pseudoterminal {
|
||||
/**
|
||||
* An event that when fired will write data to the terminal. Unlike
|
||||
* [Terminal.sendText](#Terminal.sendText) which sends text to the underlying _process_
|
||||
* (the pty "slave"), this will write the text to the terminal itself (the pty "master").
|
||||
* [Terminal.sendText](#Terminal.sendText) which sends text to the underlying child
|
||||
* pseudo-device (the child), this will write the text to parent pseudo-device (the
|
||||
* _terminal_ itself).
|
||||
*
|
||||
* Note writing `\n` will just move the cursor down 1 row, you need to write `\r` as well
|
||||
* to move the cursor to the left-most cell.
|
||||
@@ -9316,7 +9657,7 @@ declare module 'vscode' {
|
||||
* files change on disk, e.g triggered by another application, or when using the
|
||||
* [`workspace.fs`](#FileSystem)-api.
|
||||
*
|
||||
* *Note 2:* When this event is fired, edits to files thare are being created cannot be applied.
|
||||
* *Note 2:* When this event is fired, edits to files that are are being created cannot be applied.
|
||||
*/
|
||||
export const onWillCreateFiles: Event<FileWillCreateEvent>;
|
||||
|
||||
@@ -9385,7 +9726,7 @@ declare module 'vscode' {
|
||||
* is returned. Dots in the section-identifier are interpreted as child-access,
|
||||
* like `{ myExt: { setting: { doIt: true }}}` and `getConfiguration('myExt.setting').get('doIt') === true`.
|
||||
*
|
||||
* When a scope is provided configuraiton confined to that scope is returned. Scope can be a resource or a language identifier or both.
|
||||
* When a scope is provided configuration confined to that scope is returned. Scope can be a resource or a language identifier or both.
|
||||
*
|
||||
* @param section A dot-separated identifier.
|
||||
* @param scope A scope for which the configuration is asked for.
|
||||
@@ -10711,7 +11052,7 @@ declare module 'vscode' {
|
||||
* Folder specific variables used in the configuration (e.g. '${workspaceFolder}') are resolved against the given folder.
|
||||
* @param folder The [workspace folder](#WorkspaceFolder) for looking up named configurations and resolving variables or `undefined` for a non-folder setup.
|
||||
* @param nameOrConfiguration Either the name of a debug or compound configuration or a [DebugConfiguration](#DebugConfiguration) object.
|
||||
* @param parentSessionOrOptions Debug sesison options. When passed a parent [debug session](#DebugSession), assumes options with just this parent session.
|
||||
* @param parentSessionOrOptions Debug session options. When passed a parent [debug session](#DebugSession), assumes options with just this parent session.
|
||||
* @return A thenable that resolves when debugging could be successfully started.
|
||||
*/
|
||||
export function startDebugging(folder: WorkspaceFolder | undefined, nameOrConfiguration: string | DebugConfiguration, parentSessionOrOptions?: DebugSession | DebugSessionOptions): Thenable<boolean>;
|
||||
@@ -10890,7 +11231,7 @@ declare module 'vscode' {
|
||||
/**
|
||||
* Dispose this comment thread.
|
||||
*
|
||||
* Once disposed, this comment thread will be removed from visible editors and Comment Panel when approriate.
|
||||
* Once disposed, this comment thread will be removed from visible editors and Comment Panel when appropriate.
|
||||
*/
|
||||
dispose(): void;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user