[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>
This commit is contained in:
Copilot
2026-06-01 15:45:57 +02:00
committed by GitHub
parent 1262163f32
commit b9b2d90c2d

View File

@@ -22,8 +22,8 @@
],
"folding": {
"markers": {
"start": "^\\s*(::|REM|@REM)\\s*#region",
"end": "^\\s*(::|REM|@REM)\\s*#endregion"
"start": "^\\s*(::|@?[Rr][Ee][Mm])\\s*#region",
"end": "^\\s*(::|@?[Rr][Ee][Mm])\\s*#endregion"
}
}
}