File tree 2 files changed +18
-1
lines changed
2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 2639
2639
"type" : " boolean"
2640
2640
},
2641
2641
"Lua.hover.previewFields" : {
2642
- "default" : 50 ,
2642
+ "default" : 10 ,
2643
2643
"markdownDescription" : " %config.hover.previewFields%" ,
2644
2644
"scope" : " resource" ,
2645
2645
"type" : " integer"
3114
3114
"scope" : " resource" ,
3115
3115
"type" : " boolean"
3116
3116
},
3117
+ "Lua.type.inferTableSize" : {
3118
+ "default" : 10 ,
3119
+ "markdownDescription" : " %config.type.inferTableSize%" ,
3120
+ "scope" : " resource" ,
3121
+ "type" : " integer"
3122
+ },
3117
3123
"Lua.type.weakNilCheck" : {
3118
3124
"default" : false ,
3119
3125
"markdownDescription" : " %config.type.weakNilCheck%" ,
Original file line number Diff line number Diff line change @@ -16,6 +16,17 @@ package.version = VERSION
16
16
-- isPreReleaseVersion = false,
17
17
-- preRelease = false,
18
18
-- }
19
+ package .contributes .configuration = {
20
+ title = ' Lua' ,
21
+ type = ' object' ,
22
+ properties = require ' server.tools.configuration' ,
23
+ }
24
+ package .contributes .semanticTokenScopes = {
25
+ {
26
+ language = ' lua' ,
27
+ scopes = require ' package.semanticTokenScope' ,
28
+ }
29
+ }
19
30
20
31
local encodeOption = {
21
32
newline = ' \r\n ' ,
You can’t perform that action at this time.
0 commit comments