diff options
-rw-r--r-- | .luarc.json | 3 | ||||
-rw-r--r-- | script/config/template.lua | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/.luarc.json b/.luarc.json index 32fa50a7..43a34445 100644 --- a/.luarc.json +++ b/.luarc.json @@ -41,5 +41,8 @@ "script/meta", "bin" ] + }, + "hover": { + "previewFields": 50 } } diff --git a/script/config/template.lua b/script/config/template.lua index b1aee3fb..93f3344b 100644 --- a/script/config/template.lua +++ b/script/config/template.lua @@ -298,7 +298,7 @@ local template = { ['Lua.hover.viewString'] = Type.Boolean >> true, ['Lua.hover.viewStringMax'] = Type.Integer >> 1000, ['Lua.hover.viewNumber'] = Type.Boolean >> true, - ['Lua.hover.previewFields'] = Type.Integer >> 20, + ['Lua.hover.previewFields'] = Type.Integer >> 50, ['Lua.hover.enumsLimit'] = Type.Integer >> 5, ['Lua.hover.expandAlias'] = Type.Boolean >> true, ['Lua.semantic.enable'] = Type.Boolean >> true, |