We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3f0cc5 commit f355bd8Copy full SHA for f355bd8
package.json
@@ -1170,6 +1170,12 @@
1170
],
1171
"variable": [
1172
"variable.other.lua"
1173
+ ],
1174
+ "variable.static": [
1175
+ "variable.other.constant.lua"
1176
1177
+ "variable.abstract": [
1178
1179
]
1180
}
1181
package/semanticTokenScope.lua
@@ -11,6 +11,10 @@ return {
11
['property.declaration'] = {"entity.other.attribute"},
12
-- 局部变量
13
['variable'] = {"variable.other.lua"},
14
+ -- const 变量
15
+ ['variable.static'] = {'variable.other.constant.lua'},
16
+ -- close 变量
17
+ ['variable.abstract'] = {'variable.other.constant.lua'},
18
-- 自定义函数声明
19
['interface.declaration'] = {"entity.name.function.lua"},
20
0 commit comments