File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 26392639 "type" : " boolean"
26402640 },
26412641 "Lua.hover.previewFields" : {
2642- "default" : 50 ,
2642+ "default" : 10 ,
26432643 "markdownDescription" : " %config.hover.previewFields%" ,
26442644 "scope" : " resource" ,
26452645 "type" : " integer"
31143114 "scope" : " resource" ,
31153115 "type" : " boolean"
31163116 },
3117+ "Lua.type.inferTableSize" : {
3118+ "default" : 10 ,
3119+ "markdownDescription" : " %config.type.inferTableSize%" ,
3120+ "scope" : " resource" ,
3121+ "type" : " integer"
3122+ },
31173123 "Lua.type.weakNilCheck" : {
31183124 "default" : false ,
31193125 "markdownDescription" : " %config.type.weakNilCheck%" ,
Original file line number Diff line number Diff line change @@ -16,6 +16,17 @@ package.version = VERSION
1616-- isPreReleaseVersion = false,
1717-- preRelease = false,
1818-- }
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+ }
1930
2031local encodeOption = {
2132 newline = ' \r\n ' ,
You can’t perform that action at this time.
0 commit comments