[bat] change comment token to @rem. Fixes #105896

This commit is contained in:
Martin Aeschlimann 2020-09-08 14:30:55 +02:00
parent 23177e8e30
commit c255e914cd

View file

@ -1,6 +1,6 @@
{ {
"comments": { "comments": {
"lineComment": "REM" "lineComment": "@REM"
}, },
"brackets": [ "brackets": [
["{", "}"], ["{", "}"],
@ -22,8 +22,8 @@
], ],
"folding": { "folding": {
"markers": { "markers": {
"start": "^\\s*(::\\s*|REM\\s+)#region", "start": "^\\s*(::|REM|@REM)\\s*#region",
"end": "^\\s*(::\\s*|REM\\s+)#endregion" "end": "^\\s*(::|REM|@REM)\\s*#endregion"
} }
} }
} }