File tree Expand file tree Collapse file tree 3 files changed +1094
-2
lines changed Expand file tree Collapse file tree 3 files changed +1094
-2
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
+ }
Original file line number Diff line number Diff line change 3
3
"displayName" : " Wux Weapp Snippets" ,
4
4
"description" : " Wux Weapp Snippets for VS Code." ,
5
5
"icon" : " wux-weapp-snippets.png" ,
6
- "version" : " 0.0.2 " ,
6
+ "version" : " 0.0.3 " ,
7
7
"homepage" : " https://github.com/wux-weapp/wux-weapp-snippets/blob/master/README.md" ,
8
8
"bugs" : {
9
9
"url" : " https://github.com/wux-weapp/wux-weapp-snippets/issues"
30
30
"languages" : [
31
31
{
32
32
"id" : " wxml" ,
33
+ "aliases" : [
34
+ " wxml" ,
35
+ " wxml"
36
+ ],
33
37
"extensions" : [
34
38
" .wxml"
35
- ]
39
+ ],
40
+ "configuration" : " ./language-configuration.json"
41
+ }
42
+ ],
43
+ "grammars" : [
44
+ {
45
+ "language" : " wxml" ,
46
+ "scopeName" : " text.html.wxml" ,
47
+ "path" : " ./syntaxes/wxml.tmLanguage"
36
48
}
37
49
],
38
50
"snippets" : [
You can’t perform that action at this time.
0 commit comments