File tree 4 files changed +81
-3
lines changed
4 files changed +81
-3
lines changed Original file line number Diff line number Diff line change
1
+ {
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" : [" /*" ," */" ]
7
+ },
8
+ // symbols used as brackets
9
+ "brackets" : [
10
+ [" {" , " }" ],
11
+ [" [" , " ]" ],
12
+ [" (" , " )" ]
13
+ ],
14
+ // symbols that are auto closed when typing
15
+ "autoClosingPairs" : [
16
+ [" {" , " }" ],
17
+ [" [" , " ]" ],
18
+ [" (" , " )" ],
19
+ [" \" " , " \" " ],
20
+ [" '" , " '" ]
21
+ ],
22
+ // symbols that that can be used to surround a selection
23
+ "surroundingPairs" : [
24
+ [" {" , " }" ],
25
+ [" [" , " ]" ],
26
+ [" (" , " )" ],
27
+ [" \" " , " \" " ],
28
+ [" '" , " '" ]
29
+ ],
30
+ // support for region folding
31
+ "folding" : {
32
+ "offSide" : true ,
33
+ "markers" : {
34
+ "start" : " ^\\ s*#\\ s*region\\ b" ,
35
+ "end" : " ^\\ s*#\\ s*endregion\\ b"
36
+ }
37
+ }
38
+ }
Original file line number Diff line number Diff line change
1
+ {
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" : [" /*" ," */" ]
7
+ },
8
+ // symbols used as brackets
9
+ "brackets" : [
10
+ [" {" , " }" ],
11
+ [" [" , " ]" ],
12
+ [" (" , " )" ]
13
+ ],
14
+ // symbols that are auto closed when typing
15
+ "autoClosingPairs" : [
16
+ [" {" , " }" ],
17
+ [" [" , " ]" ],
18
+ [" (" , " )" ],
19
+ [" \" " , " \" " ],
20
+ [" '" , " '" ]
21
+ ],
22
+ // symbols that that can be used to surround a selection
23
+ "surroundingPairs" : [
24
+ [" {" , " }" ],
25
+ [" [" , " ]" ],
26
+ [" (" , " )" ],
27
+ [" \" " , " \" " ],
28
+ [" '" , " '" ]
29
+ ],
30
+ // support for region folding
31
+ "folding" : {
32
+ "offSide" : true ,
33
+ "markers" : {
34
+ "start" : " ^\\ s*#\\ s*region\\ b" ,
35
+ "end" : " ^\\ s*#\\ s*endregion\\ b"
36
+ }
37
+ }
38
+ }
Original file line number Diff line number Diff line change 90
90
"extensions" : [
91
91
" .pp" ,
92
92
" .epp"
93
- ]
93
+ ],
94
+ "configuration" : " ./languages/puppet-language-configuration.json"
94
95
},
95
96
{
96
97
"id" : " puppetfile" ,
100
101
],
101
102
"filenames" : [
102
103
" Puppetfile"
103
- ]
104
+ ],
105
+ "configuration" : " ./languages/puppetfile-language-configuration.json"
104
106
}
105
107
],
106
108
"jsonValidation" : [
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ let extensionFeatures: IFeature[] = [];
36
36
37
37
export function activate ( context : vscode . ExtensionContext ) {
38
38
extContext = context ;
39
-
39
+
40
40
setLanguageConfiguration ( ) ;
41
41
42
42
notifyOnNewExtensionVersion ( extContext ) ;
You can’t perform that action at this time.
0 commit comments