File tree Expand file tree Collapse file tree 4 files changed +478
-0
lines changed Expand file tree Collapse file tree 4 files changed +478
-0
lines changed Original file line number Diff line number Diff line change @@ -52,5 +52,8 @@ webpack.config.js
52
52
! src /razor /language-configuration.json
53
53
! src /razor /syntaxes /*
54
54
55
+ ! src /xaml /language-configuration.json
56
+ ! src /xaml /syntaxes /*
57
+
55
58
+RuntimeLicenses /dependencies /*
56
59
coreclr-debug /install.log
Original file line number Diff line number Diff line change 5590
5590
"aliases" : [
5591
5591
" ASP.NET Razor"
5592
5592
]
5593
+ },
5594
+ {
5595
+ "id" : " xaml" ,
5596
+ "extensions" : [
5597
+ " .xaml"
5598
+ ],
5599
+ "configuration" : " ./src/xaml/language-configuration.json" ,
5600
+ "aliases" : [
5601
+ " XAML"
5602
+ ]
5593
5603
}
5594
5604
],
5595
5605
"grammars" : [
5600
5610
"unbalancedBracketScopes" : [
5601
5611
" text.aspnetcorerazor"
5602
5612
]
5613
+ },
5614
+ {
5615
+ "language" : " xaml" ,
5616
+ "scopeName" : " source.xaml" ,
5617
+ "path" : " ./src/xaml/syntaxes/xaml.tmLanguage.json"
5603
5618
}
5604
5619
],
5605
5620
"menus" : {
Original file line number Diff line number Diff line change
1
+ {
2
+ "comments" : {
3
+ "blockComment" : [ " <!--" , " -->" ]
4
+ },
5
+ "brackets" : [
6
+ [ " <" , " >" ],
7
+ [ " {" , " }" ]
8
+ ],
9
+ "autoClosingPairs" : [
10
+ {
11
+ "open" : " {" ,
12
+ "close" : " }"
13
+ },
14
+ {
15
+ "open" : " '" ,
16
+ "close" : " '" ,
17
+ "notIn" : [ " string" , " comment" ]
18
+ },
19
+ {
20
+ "open" : " \" " ,
21
+ "close" : " \" " ,
22
+ "notIn" : [ " string" , " comment" ]
23
+ },
24
+ {
25
+ "open" : " <!--" ,
26
+ "close" : " -->" ,
27
+ "notIn" : [ " string" ]
28
+ },
29
+ {
30
+ "open" : " <![CDATA[" ,
31
+ "close" : " ]]>" ,
32
+ "notIn" : [ " string" ]
33
+ },
34
+ {
35
+ "open" : " <?" ,
36
+ "close" : " ?>" ,
37
+ "notIn" : [ " string" ]
38
+ }
39
+ ],
40
+ "autoCloseBefore" : " }/>\" ' \r\n\t " ,
41
+ "surroundingPairs" : [
42
+ [ " {" , " }" ],
43
+ [ " '" , " '" ],
44
+ [ " \" " , " \" " ]
45
+ ]
46
+ }
You can’t perform that action at this time.
0 commit comments