vscode/extensions/bat/language-configuration.json
MichielVanderlee b8721cbc96 Add REM support
2017-10-25 12:19:21 -03:00

29 lines
390 B
JSON

{
"comments": {
"lineComment": "REM"
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""]
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["\"", "\""]
],
"folding": {
"markers": {
"start": "^\\s*(::|REM)\\s*#region",
"end": "^\\s*(::|REM)\\s*#endregion"
}
}
}