@@ -1645,7 +1645,7 @@ declare module 'vscode' {
1645
1645
export enum QuickPickItemKind {
1646
1646
/**
1647
1647
* When a {@link QuickPickItem} has a kind of {@link Separator}, the item is just a visual separator and does not represent a real item.
1648
- * The only property that applies is {@link label}. All other properties on {@link QuickPickItem} will be ignored and have no effect.
1648
+ * The only property that applies is {@link QuickPickItem. label label }. All other properties on {@link QuickPickItem} will be ignored and have no effect.
1649
1649
*/
1650
1650
Separator = -1,
1651
1651
/**
@@ -5984,7 +5984,7 @@ declare module 'vscode' {
5984
5984
5985
5985
/**
5986
5986
* Assumes a {@link TerminalLocation} of editor and allows specifying a {@link ViewColumn} and
5987
- * {@link preserveFocus} property
5987
+ * {@link TerminalEditorLocationOptions. preserveFocus preserveFocus } property
5988
5988
*/
5989
5989
export interface TerminalEditorLocationOptions {
5990
5990
/**
@@ -7688,7 +7688,7 @@ declare module 'vscode' {
7688
7688
/**
7689
7689
* Controls whether forms are enabled in the webview content or not.
7690
7690
*
7691
- * Defaults to true if {@link enableScripts scripts are enabled}. Otherwise defaults to false.
7691
+ * Defaults to true if {@link WebViewOptions. enableScripts scripts are enabled}. Otherwise defaults to false.
7692
7692
* Explicitly setting this property to either true or false overrides the default.
7693
7693
*/
7694
7694
readonly enableForms?: boolean;
@@ -8868,7 +8868,7 @@ declare module 'vscode' {
8868
8868
/**
8869
8869
* A short-hand for `openTextDocument(uri).then(document => showTextDocument(document, options))`.
8870
8870
*
8871
- * @see {@link openTextDocument}
8871
+ * @see {@link workspace. openTextDocument}
8872
8872
*
8873
8873
* @param uri A resource identifier.
8874
8874
* @param options {@link TextDocumentShowOptions Editor options} to configure the behavior of showing the {@link TextEditor editor}.
@@ -9304,7 +9304,7 @@ declare module 'vscode' {
9304
9304
* Registers a webview panel serializer.
9305
9305
*
9306
9306
* Extensions that support reviving should have an `"onWebviewPanel:viewType"` activation event and
9307
- * make sure that {@link registerWebviewPanelSerializer} is called during activation.
9307
+ * make sure that ` registerWebviewPanelSerializer` is called during activation.
9308
9308
*
9309
9309
* Only a single serializer may be registered at a time for a given `viewType`.
9310
9310
*
@@ -11177,7 +11177,7 @@ declare module 'vscode' {
11177
11177
/**
11178
11178
* A short-hand for `openTextDocument(Uri.file(fileName))`.
11179
11179
*
11180
- * @see {@link openTextDocument}
11180
+ * @see {@link workspace. openTextDocument}
11181
11181
* @param fileName A name of a file on disk.
11182
11182
* @return A promise that resolves to a {@link TextDocument document}.
11183
11183
*/
@@ -11281,7 +11281,7 @@ declare module 'vscode' {
11281
11281
* Open an untitled notebook. The editor will prompt the user for a file
11282
11282
* path when the document is to be saved.
11283
11283
*
11284
- * @see {@link openNotebookDocument}
11284
+ * @see {@link workspace. openNotebookDocument}
11285
11285
* @param notebookType The notebook type that should be used.
11286
11286
* @param content The initial contents of the notebook.
11287
11287
* @returns A promise that resolves to a {@link NotebookDocument notebook}.
@@ -14140,7 +14140,7 @@ declare module 'vscode' {
14140
14140
*
14141
14141
* Defaults to false.
14142
14142
*
14143
- * Note: you cannot use this option with {@link silent}.
14143
+ * Note: you cannot use this option with {@link AuthenticationGetSessionOptions.silent silent}.
14144
14144
*/
14145
14145
createIfNone?: boolean;
14146
14146
@@ -14162,7 +14162,7 @@ declare module 'vscode' {
14162
14162
*
14163
14163
* Defaults to false.
14164
14164
*
14165
- * Note: you cannot use this option with any other options that prompt the user like {@link createIfNone}.
14165
+ * Note: you cannot use this option with any other options that prompt the user like {@link AuthenticationGetSessionOptions.createIfNone createIfNone}.
14166
14166
*/
14167
14167
silent?: boolean;
14168
14168
}
@@ -14510,7 +14510,7 @@ declare module 'vscode' {
14510
14510
* the function returns or the returned thenable resolves.
14511
14511
*
14512
14512
* @param item An unresolved test item for which children are being
14513
- * requested, or `undefined` to resolve the controller's initial {@link items}.
14513
+ * requested, or `undefined` to resolve the controller's initial {@link TestController.items items}.
14514
14514
*/
14515
14515
resolveHandler?: (item: TestItem | undefined) => Thenable<void> | void;
14516
14516
@@ -14560,7 +14560,7 @@ declare module 'vscode' {
14560
14560
* A TestRunRequest is a precursor to a {@link TestRun}, which in turn is
14561
14561
* created by passing a request to {@link tests.runTests}. The TestRunRequest
14562
14562
* contains information about which tests should be run, which should not be
14563
- * run, and how they are run (via the {@link profile}).
14563
+ * run, and how they are run (via the {@link TestRunRequest.profile profile}).
14564
14564
*
14565
14565
* In general, TestRunRequests are created by the editor and pass to
14566
14566
* {@link TestRunProfile.runHandler}, however you can also create test
@@ -14762,7 +14762,7 @@ declare module 'vscode' {
14762
14762
/**
14763
14763
* The parent of this item. It's set automatically, and is undefined
14764
14764
* top-level items in the {@link TestController.items} and for items that
14765
- * aren't yet included in another item's {@link children}.
14765
+ * aren't yet included in another item's {@link TestItem.children children}.
14766
14766
*/
14767
14767
readonly parent: TestItem | undefined;
14768
14768
@@ -14802,7 +14802,7 @@ declare module 'vscode' {
14802
14802
description?: string;
14803
14803
14804
14804
/**
14805
- * Location of the test item in its {@link uri}.
14805
+ * Location of the test item in its {@link TestItem.uri uri}.
14806
14806
*
14807
14807
* This is only meaningful if the `uri` points to a file.
14808
14808
*/
@@ -14828,12 +14828,12 @@ declare module 'vscode' {
14828
14828
message: string | MarkdownString;
14829
14829
14830
14830
/**
14831
- * Expected test output. If given with {@link actualOutput}, a diff view will be shown.
14831
+ * Expected test output. If given with {@link TestMessage. actualOutput actualOutput }, a diff view will be shown.
14832
14832
*/
14833
14833
expectedOutput?: string;
14834
14834
14835
14835
/**
14836
- * Actual test output. If given with {@link expectedOutput}, a diff view will be shown.
14836
+ * Actual test output. If given with {@link TestMessage. expectedOutput expectedOutput }, a diff view will be shown.
14837
14837
*/
14838
14838
actualOutput?: string;
14839
14839
0 commit comments