File tree 2 files changed +58
-0
lines changed
extensions/vscode-vue-language-features
2 files changed +58
-0
lines changed Original file line number Diff line number Diff line change 139
139
},
140
140
{
141
141
"id" : " vue-interpolations"
142
+ },
143
+ {
144
+ "id" : " vue-sfc-style-variable-injection"
142
145
}
143
146
],
144
147
"grammars" : [
221
224
" text.html.derivative" ,
222
225
" text.pug"
223
226
]
227
+ },
228
+ {
229
+ "language" : " vue-sfc-style-variable-injection" ,
230
+ "scopeName" : " vue.sfc.style.variable.injection" ,
231
+ "path" : " ./syntaxes/vue-sfc-style-variable-injection.json" ,
232
+ "injectTo" : [
233
+ " source.vue"
234
+ ]
224
235
}
225
236
],
226
237
"breakpoints" : [
Original file line number Diff line number Diff line change
1
+ {
2
+ "fileTypes" : [],
3
+ "injectionSelector" : " L:meta.property-value.css" ,
4
+ "patterns" : [
5
+ {
6
+ "include" : " #vue-sfc-style-variable-injection"
7
+ }
8
+ ],
9
+ "repository" : {
10
+ "vue-sfc-style-variable-injection" : {
11
+ "begin" : " \\ b(v-bind)\\ s*\\ (" ,
12
+ "name" : " vue.sfc.style.variable.injection.v-bind" ,
13
+ "end" : " \\ )" ,
14
+ "beginCaptures" : {
15
+ "1" : {
16
+ "name" : " entity.name.function"
17
+ }
18
+ },
19
+ "patterns" : [
20
+ {
21
+ "begin" : " ('|\" )" ,
22
+ "beginCaptures" : {
23
+ "1" : {
24
+ "name" : " punctuation.definition.tag.begin.html"
25
+ }
26
+ },
27
+ "end" : " (\\ 1)" ,
28
+ "endCaptures" : {
29
+ "1" : {
30
+ "name" : " punctuation.definition.tag.end.html"
31
+ }
32
+ },
33
+ "name" : " source.ts.embedded.html.vue" ,
34
+ "patterns" : [
35
+ {
36
+ "include" : " source.js"
37
+ }
38
+ ]
39
+ },
40
+ {
41
+ "include" : " source.js"
42
+ }
43
+ ]
44
+ }
45
+ },
46
+ "scopeName" : " vue.sfc.style.variable.injection"
47
+ }
You can’t perform that action at this time.
0 commit comments