mirror of
https://github.com/microsoft/vscode.git
synced 2026-03-03 07:19:22 +00:00
Do not fold closing tag (#132316)
This commit is contained in:
@@ -58,7 +58,7 @@ class TypeScriptFoldingProvider implements vscode.FoldingRangeProvider {
|
||||
return new vscode.FoldingRange(start, end, kind);
|
||||
}
|
||||
|
||||
private static readonly foldEndPairCharacters = ['}', ']', ')', '`'];
|
||||
private static readonly foldEndPairCharacters = ['}', ']', ')', '`', '>'];
|
||||
|
||||
private adjustFoldingEnd(range: vscode.Range, document: vscode.TextDocument) {
|
||||
// workaround for #47240
|
||||
|
||||
Reference in New Issue
Block a user