diff --git a/extensions/sql/language-configuration.json b/extensions/sql/language-configuration.json index cf96472ffd..b188839c8d 100644 --- a/extensions/sql/language-configuration.json +++ b/extensions/sql/language-configuration.json @@ -23,7 +23,13 @@ ["\"", "\""], ["'", "'"], ["`", "`"] - ] + ], + "folding": { + "markers": { + "start": "^\\s*--\\s*#region\\s*.*$", + "end": "^\\s*--\\s*#endregion\\s*.*$" + } + } // enhancedBrackets:[ // { openTrigger: 'n', open: /begin$/i, closeComplete: 'end', matchCase: true }, @@ -31,4 +37,4 @@ // { openTrigger: 'n', open: /when$/i, closeComplete: 'then', matchCase: true } // ], // noindentBrackets: '()', -} \ No newline at end of file +}