mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-24 02:28:34 +01:00
Fix broken regex of OR condition for fold marker. Fixes #37531
This commit is contained in:
@@ -26,8 +26,8 @@
|
||||
],
|
||||
"folding": {
|
||||
"markers": {
|
||||
"start": "^\\s*//\\s*(#?region\\b)|(<editor-fold\\b)",
|
||||
"end": "^\\s*//\\s*(#?endregion\\b)|(</editor-fold>)"
|
||||
"start": "^\\s*//\\s*(?:(?:#?region\\b)|(?:<editor-fold\\b))",
|
||||
"end": "^\\s*//\\s*(?:(?:#?endregion\\b)|(?:</editor-fold>))"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user