Skip to content

Commit 346527a

Browse files
committed
Language configuration adapted to .mcr
1 parent a9661c8 commit 346527a

File tree

1 file changed

+7
-17
lines changed

1 file changed

+7
-17
lines changed

language-configuration.json

+7-17
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,26 @@
11
{
22
"comments": {
3-
// symbol used for single line comment. Remove this entry if your language does not support line comments
4-
"lineComment": "//",
5-
// symbols used for start and end a block comment. Remove this entry if your language does not support block comments
6-
"blockComment": [ "/*", "*/" ]
3+
// symbol used for single line comment
4+
"lineComment": "COMMENT :"
75
},
86
// symbols used as brackets
97
"brackets": [
10-
["{", "}"],
11-
["[", "]"],
12-
["(", ")"]
8+
[" : ", " : "]
139
],
1410
// symbols that are auto closed when typing
1511
"autoClosingPairs": [
1612
["{", "}"],
17-
["[", "]"],
18-
["(", ")"],
19-
["\"", "\""],
20-
["'", "'"]
13+
[": ", " : "]
2114
],
2215
// symbols that can be used to surround a selection
2316
"surroundingPairs": [
2417
["{", "}"],
25-
["[", "]"],
26-
["(", ")"],
27-
["\"", "\""],
28-
["'", "'"],
18+
[":", " : "]
2919
],
3020
"folding": {
3121
"markers": {
32-
"start": "IF",
33-
"end": "ENDIF"
22+
"start": "IF|REPEAT",
23+
"end": "ENDIF|ENDREPEAT"
3424
}
3525
}
3626
}

0 commit comments

Comments
 (0)