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
Write a extension that test the new proposed API onDidChangeFoldingRanges
exportinterfaceFoldingRangeProvider{/** * An optional event to signal that the folding ranges from this provider have changed. */onDidChangeFoldingRanges?: Event<void>;/** * Returns a list of folding ranges or null and undefined if the provider * does not want to participate or was cancelled. * @param document The document in which the command was invoked. * @param context Additional context information (for future use) * @param token A cancellation token. */provideFoldingRanges(document: TextDocument,context: FoldingContext,token: CancellationToken): ProviderResult<FoldingRange[]>;}
The text was updated successfully, but these errors were encountered:
Refs: #99914
Complexity: 3
Create Issue
Write a extension that test the new proposed API
onDidChangeFoldingRanges
The text was updated successfully, but these errors were encountered: