Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use fully qualified names in @link #141679

Merged
merged 1 commit into from
Jan 28, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions src/vscode-dts/vscode.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1645,7 +1645,7 @@ declare module 'vscode' {
export enum QuickPickItemKind {
/**
* When a {@link QuickPickItem} has a kind of {@link Separator}, the item is just a visual separator and does not represent a real item.
* The only property that applies is {@link label}. All other properties on {@link QuickPickItem} will be ignored and have no effect.
* The only property that applies is {@link QuickPickItem.label label }. All other properties on {@link QuickPickItem} will be ignored and have no effect.
*/
Separator = -1,
/**
Expand Down Expand Up @@ -5984,7 +5984,7 @@ declare module 'vscode' {

/**
* Assumes a {@link TerminalLocation} of editor and allows specifying a {@link ViewColumn} and
* {@link preserveFocus} property
* {@link TerminalEditorLocationOptions.preserveFocus preserveFocus } property
*/
export interface TerminalEditorLocationOptions {
/**
Expand Down Expand Up @@ -7688,7 +7688,7 @@ declare module 'vscode' {
/**
* Controls whether forms are enabled in the webview content or not.
*
* Defaults to true if {@link enableScripts scripts are enabled}. Otherwise defaults to false.
* Defaults to true if {@link WebViewOptions.enableScripts scripts are enabled}. Otherwise defaults to false.
* Explicitly setting this property to either true or false overrides the default.
*/
readonly enableForms?: boolean;
Expand Down Expand Up @@ -8868,7 +8868,7 @@ declare module 'vscode' {
/**
* A short-hand for `openTextDocument(uri).then(document => showTextDocument(document, options))`.
*
* @see {@link openTextDocument}
* @see {@link workspace.openTextDocument}
*
* @param uri A resource identifier.
* @param options {@link TextDocumentShowOptions Editor options} to configure the behavior of showing the {@link TextEditor editor}.
Expand Down Expand Up @@ -9304,7 +9304,7 @@ declare module 'vscode' {
* Registers a webview panel serializer.
*
* Extensions that support reviving should have an `"onWebviewPanel:viewType"` activation event and
* make sure that {@link registerWebviewPanelSerializer} is called during activation.
* make sure that `registerWebviewPanelSerializer` is called during activation.
*
* Only a single serializer may be registered at a time for a given `viewType`.
*
Expand Down Expand Up @@ -11177,7 +11177,7 @@ declare module 'vscode' {
/**
* A short-hand for `openTextDocument(Uri.file(fileName))`.
*
* @see {@link openTextDocument}
* @see {@link workspace.openTextDocument}
* @param fileName A name of a file on disk.
* @return A promise that resolves to a {@link TextDocument document}.
*/
Expand Down Expand Up @@ -11281,7 +11281,7 @@ declare module 'vscode' {
* Open an untitled notebook. The editor will prompt the user for a file
* path when the document is to be saved.
*
* @see {@link openNotebookDocument}
* @see {@link workspace.openNotebookDocument}
* @param notebookType The notebook type that should be used.
* @param content The initial contents of the notebook.
* @returns A promise that resolves to a {@link NotebookDocument notebook}.
Expand Down Expand Up @@ -14140,7 +14140,7 @@ declare module 'vscode' {
*
* Defaults to false.
*
* Note: you cannot use this option with {@link silent}.
* Note: you cannot use this option with {@link AuthenticationGetSessionOptions.silent silent}.
*/
createIfNone?: boolean;

Expand All @@ -14162,7 +14162,7 @@ declare module 'vscode' {
*
* Defaults to false.
*
* Note: you cannot use this option with any other options that prompt the user like {@link createIfNone}.
* Note: you cannot use this option with any other options that prompt the user like {@link AuthenticationGetSessionOptions.createIfNone createIfNone}.
*/
silent?: boolean;
}
Expand Down Expand Up @@ -14510,7 +14510,7 @@ declare module 'vscode' {
* the function returns or the returned thenable resolves.
*
* @param item An unresolved test item for which children are being
* requested, or `undefined` to resolve the controller's initial {@link items}.
* requested, or `undefined` to resolve the controller's initial {@link TestController.items items}.
*/
resolveHandler?: (item: TestItem | undefined) => Thenable<void> | void;

Expand Down Expand Up @@ -14560,7 +14560,7 @@ declare module 'vscode' {
* A TestRunRequest is a precursor to a {@link TestRun}, which in turn is
* created by passing a request to {@link tests.runTests}. The TestRunRequest
* contains information about which tests should be run, which should not be
* run, and how they are run (via the {@link profile}).
* 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
Expand Down Expand Up @@ -14762,7 +14762,7 @@ declare module 'vscode' {
/**
* The parent of this item. It's set automatically, and is undefined
* top-level items in the {@link TestController.items} and for items that
* aren't yet included in another item's {@link children}.
* aren't yet included in another item's {@link TestItem.children children}.
*/
readonly parent: TestItem | undefined;

Expand Down Expand Up @@ -14802,7 +14802,7 @@ declare module 'vscode' {
description?: string;

/**
* Location of the test item in its {@link uri}.
* Location of the test item in its {@link TestItem.uri uri}.
*
* This is only meaningful if the `uri` points to a file.
*/
Expand All @@ -14828,12 +14828,12 @@ declare module 'vscode' {
message: string | MarkdownString;

/**
* Expected test output. If given with {@link actualOutput}, a diff view will be shown.
* Expected test output. If given with {@link TestMessage.actualOutput actualOutput }, a diff view will be shown.
*/
expectedOutput?: string;

/**
* Actual test output. If given with {@link expectedOutput}, a diff view will be shown.
* Actual test output. If given with {@link TestMessage.expectedOutput expectedOutput }, a diff view will be shown.
*/
actualOutput?: string;

Expand Down