mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 11:38:51 +01:00
expand editor code region styles
Expand editor code region styles. Allow a space after the leading comment indicator. Allow both single line and block comments. Examples: // #region name (* region name *)
This commit is contained in:
@@ -24,8 +24,8 @@
|
||||
"folding": {
|
||||
"offSide": true,
|
||||
"markers": {
|
||||
"start": "^\\s*//#region",
|
||||
"end": "^\\s*//#endregion"
|
||||
"start": "^\\s*//\\s*#region|^\\s*\\(\\*\\s*#region(.*)\\*\\)",
|
||||
"end": "^\\s*//\\s*#endregion|^\\s*\\(\\*\\s*#endregion\\s*\\*\\)"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user