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
SemanticTokensOptions is defined as follow in Semantic Token
exportinterfaceSemanticTokensOptionsextendsWorkDoneProgressOptions{/** * The legend used by the server */legend: SemanticTokensLegend;/** * Server supports providing semantic tokens for a specific range * of a document. */range?: boolean|{};/** * Server supports providing semantic tokens for a full document. */full?: boolean|{/** * The server supports deltas for full documents. */delta?: boolean;};}
but in this repo, SemanticTokensOptions lack of legend, range and full fields
// SemanticTokensOptions option of semantic tokens provider server capabilities.//// @since 3.16.0.typeSemanticTokensOptionsstruct {
WorkDoneProgressOptions
}
The text was updated successfully, but these errors were encountered:
SemanticTokensOptions is defined as follow in Semantic Token
but in this repo, SemanticTokensOptions lack of legend, range and full fields
The text was updated successfully, but these errors were encountered: