File tree 1 file changed +7
-17
lines changed
1 file changed +7
-17
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"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 :"
7
5
},
8
6
// symbols used as brackets
9
7
"brackets" : [
10
- [" {" , " }" ],
11
- [" [" , " ]" ],
12
- [" (" , " )" ]
8
+ [" : " , " : " ]
13
9
],
14
10
// symbols that are auto closed when typing
15
11
"autoClosingPairs" : [
16
12
[" {" , " }" ],
17
- [" [" , " ]" ],
18
- [" (" , " )" ],
19
- [" \" " , " \" " ],
20
- [" '" , " '" ]
13
+ [" : " , " : " ]
21
14
],
22
15
// symbols that can be used to surround a selection
23
16
"surroundingPairs" : [
24
17
[" {" , " }" ],
25
- [" [" , " ]" ],
26
- [" (" , " )" ],
27
- [" \" " , " \" " ],
28
- [" '" , " '" ],
18
+ [" :" , " : " ]
29
19
],
30
20
"folding" : {
31
21
"markers" : {
32
- "start" : " IF" ,
33
- "end" : " ENDIF"
22
+ "start" : " IF|REPEAT " ,
23
+ "end" : " ENDIF|ENDREPEAT "
34
24
}
35
25
}
36
26
}
You can’t perform that action at this time.
0 commit comments