You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
export interface CompletionItemLabelDetails {
/**
* An optional string which is rendered less prominently directly after
* {@link CompletionItem.label label}, without any spacing. Should be
* used for function signatures or type annotations.
*/
detail?: string;
/**
* An optional string which is rendered less prominently after
* {@link CompletionItemLabelDetails.detail}. Should be used for fully qualified
* names or file path.
*/
description?: string;
}
We are using detail for the shape namespace, but we should be using description. And we should probably make it the fully-qualified shape id.
The text was updated successfully, but these errors were encountered:
From lsp docs:
We are using
detail
for the shape namespace, but we should be usingdescription
. And we should probably make it the fully-qualified shape id.The text was updated successfully, but these errors were encountered: