vscode/extensions/bat/language-configuration.json

30 lines
455 B
JSON
Raw Normal View History

2015-11-13 21:39:38 +08:00
{
"comments": {
"lineComment": "@REM"
2015-11-13 21:39:38 +08:00
},
"brackets": [
["{", "}"],
["[", "]"],
["(", ")"]
],
"autoClosingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
{ "open": "\"", "close": "\"", "notIn": ["string"] }
],
"surroundingPairs": [
["{", "}"],
["[", "]"],
["(", ")"],
["%", "%"],
["\"", "\""]
2017-10-25 23:13:52 +08:00
],
"folding": {
"markers": {
"start": "^\\s*(::|REM|@REM)\\s*#region",
"end": "^\\s*(::|REM|@REM)\\s*#endregion"
2017-10-25 23:13:52 +08:00
}
}
}