mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-01 12:06:24 +01:00
b9b2d90c2d
* 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>
30 lines
467 B
JSON
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"
|
|
}
|
|
}
|
|
}
|