Support --#region and --#endregion in SQL (#141257)

This commit is contained in:
gjsjohnmurray 2022-01-24 09:16:13 +00:00
parent 4135ba294b
commit bcccb1627c

View file

@ -23,7 +23,13 @@
["\"", "\""], ["\"", "\""],
["'", "'"], ["'", "'"],
["`", "`"] ["`", "`"]
] ],
"folding": {
"markers": {
"start": "^\\s*--\\s*#region\\b",
"end": "^\\s*--\\s*#endregion\\b"
}
},
// enhancedBrackets:[ // enhancedBrackets:[
// { openTrigger: 'n', open: /begin$/i, closeComplete: 'end', matchCase: true }, // { openTrigger: 'n', open: /begin$/i, closeComplete: 'end', matchCase: true },
@ -31,4 +37,4 @@
// { openTrigger: 'n', open: /when$/i, closeComplete: 'then', matchCase: true } // { openTrigger: 'n', open: /when$/i, closeComplete: 'then', matchCase: true }
// ], // ],
// noindentBrackets: '()', // noindentBrackets: '()',
} }