File tree 2 files changed +14
-11
lines changed
2 files changed +14
-11
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ All notable changes to the "aiscript" extension will be documented in this file.
4
4
5
5
Check [ Keep a Changelog] ( http://keepachangelog.com/ ) for recommendations on how to structure this file.
6
6
7
+ ## 0.1.13
8
+ - テンプレートリテラル内の波括弧のエスケープが効いていない問題を修正
9
+
7
10
## 0.1.12
8
11
- 関数のIntellisenseを追加
9
12
- https://github.com/aiscript-dev/aiscript/pull/661 - ` [].at() `
Original file line number Diff line number Diff line change 10
10
"patterns" : [
11
11
{
12
12
"include" : " #syntax"
13
+ },
14
+ {
15
+ "include" : " #template-strings"
13
16
}
14
17
],
15
18
"repository" : {
24
27
{
25
28
"include" : " #strings"
26
29
},
27
- {
28
- "include" : " #template-strings"
29
- },
30
30
{
31
31
"include" : " #declarations"
32
32
},
131
131
"patterns" : [
132
132
{
133
133
"name" : " constant.character.escape.aiscript" ,
134
- "match" : " \\\\ . "
134
+ "match" : " \\\\ [' \"\\\\ ] "
135
135
}
136
136
]
137
137
},
142
142
"patterns" : [
143
143
{
144
144
"name" : " constant.character.escape.aiscript" ,
145
- "match" : " \\\\ . "
145
+ "match" : " \\\\ [' \"\\\\ ] "
146
146
}
147
147
]
148
148
}
165
165
}
166
166
},
167
167
"patterns" : [
168
+ {
169
+ "name" : " constant.character.escape.aiscript" ,
170
+ "match" : " \\\\ ['\" `\\\\ {}]"
171
+ },
168
172
{
169
173
"name" : " meta.string-template.aiscript" ,
170
- "begin" : " {" ,
174
+ "begin" : " \\ {" ,
171
175
"beginCaptures" : {
172
176
"0" : {
173
177
"name" : " entity.name.tag.aiscript"
174
178
}
175
179
},
176
- "end" : " }" ,
180
+ "end" : " \\ }" ,
177
181
"endCaptures" : {
178
182
"0" : {
179
183
"name" : " entity.name.tag.aiscript"
185
189
}
186
190
]
187
191
},
188
- {
189
- "name" : " constant.character.escape.aiscript" ,
190
- "match" : " \\\\ ."
191
- },
192
192
{
193
193
"name" : " string.other.aiscript" ,
194
194
"match" : " [^`{]+"
You can’t perform that action at this time.
0 commit comments