Files
vscode/extensions/bat/language-configuration.json
Copilot b9b2d90c2d [bat] Make #region folding markers case-insensitive for REM (#317784)
* Initial plan

* [bat] Make folding markers case-insensitive for REM

Co-authored-by: aeschli <6461412+aeschli@users.noreply.github.com>

---------

Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: aeschli <6461412+aeschli@users.noreply.github.com>
2026-06-01 15:45:57 +02:00

30 lines
467 B
JSON

{
"comments": {
"lineComment": "@REM"
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
{ "open": "\"", "close": "\"", "notIn": ["string"] }
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["%", "%"],
["\"", "\""]
],
"folding": {
"markers": {
"start": "^\\s*(::|@?[Rr][Ee][Mm])\\s*#region",
"end": "^\\s*(::|@?[Rr][Ee][Mm])\\s*#endregion"
}
}
}