Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/bat/language-configuration.json
3290 views
1
{
2
"comments": {
3
"lineComment": "@REM"
4
},
5
"brackets": [
6
["{", "}"],
7
["[", "]"],
8
["(", ")"]
9
],
10
"autoClosingPairs": [
11
["{", "}"],
12
["[", "]"],
13
["(", ")"],
14
{ "open": "\"", "close": "\"", "notIn": ["string"] }
15
],
16
"surroundingPairs": [
17
["{", "}"],
18
["[", "]"],
19
["(", ")"],
20
["%", "%"],
21
["\"", "\""]
22
],
23
"folding": {
24
"markers": {
25
"start": "^\\s*(::|REM|@REM)\\s*#region",
26
"end": "^\\s*(::|REM|@REM)\\s*#endregion"
27
}
28
}
29
}
30
31