summaryrefslogtreecommitdiff
path: root/script/config
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-08-18 14:49:41 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-08-18 14:49:41 +0800
commitf0b9fdb56762a95bdb568e2fcc15ce96bb97ca7c (patch)
treef5e868739e19ab99afe59fb77f7f1ca815c2415d /script/config
parente3b50c1af79dac4892cc0a4725c39da187142cc6 (diff)
downloadlua-language-server-f0b9fdb56762a95bdb568e2fcc15ce96bb97ca7c.zip
`Lua.hint.paramName` supports all params
Diffstat (limited to 'script/config')
-rw-r--r--script/config/config.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/config/config.lua b/script/config/config.lua
index d6919c65..512b954c 100644
--- a/script/config/config.lua
+++ b/script/config/config.lua
@@ -192,7 +192,7 @@ local Template = {
['Lua.hint.enable'] = Type.Boolean >> false,
['Lua.hint.paramType'] = Type.Boolean >> true,
['Lua.hint.setType'] = Type.Boolean >> false,
- ['Lua.hint.paramName'] = Type.Boolean >> true,
+ ['Lua.hint.paramName'] = Type.String >> 'All',
['Lua.window.statusBar'] = Type.Boolean >> true,
['Lua.window.progressBar'] = Type.Boolean >> true,
['Lua.telemetry.enable'] = Type.Or(Type.Boolean >> false, Type.Nil),