-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Open
Labels
A-completionautocompletionautocompletionE-has-instructionsIssue has some instructions and pointers to code to get startedIssue has some instructions and pointers to code to get startedE-mediumS-actionableSomeone could pick this issue up and work on it right nowSomeone could pick this issue up and work on it right now
Description
/**
* A more detailed label for a completion item.
*
* @since 3.17.0 - proposed state
*/
export interface CompletionItemLabel {
/**
* The name of a function or variable.
*/
name: string;
/**
* The parameters without the return type.
*/
parameters?: string;
/**
* The fully qualified name, like package name or file path.
*/
qualifier?: string;
/**
* The return-type of a function or type of a property/variable.
*/
type?: string;
}
It's unclear what is the interplay between label and detail
Metadata
Metadata
Assignees
Labels
A-completionautocompletionautocompletionE-has-instructionsIssue has some instructions and pointers to code to get startedIssue has some instructions and pointers to code to get startedE-mediumS-actionableSomeone could pick this issue up and work on it right nowSomeone could pick this issue up and work on it right now