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:
Yemi Bedu @ P&R 2017-10-09 12:08:11 -04:00 committed by GitHub
parent d06bf76099
commit d95f9a43c4

View file

@ -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*\\*\\)"
}
}
}