vscode/extensions/bat/language-configuration.json
2017-10-25 12:13:52 -03:00

29 lines
370 B
JSON

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