summaryrefslogtreecommitdiff
path: root/script
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2022-04-16 00:32:04 +0800
committer最萌小汐 <sumneko@hotmail.com>2022-04-16 00:32:04 +0800
commit82a759024b87ccd2aa828faef214a43ac18dacb5 (patch)
tree598cee32157e2a6ceee2336bea6829374d863464 /script
parent8b315d6f1d1ed2e680014841b84c3a768a136bd9 (diff)
downloadlua-language-server-82a759024b87ccd2aa828faef214a43ac18dacb5.zip
inlay hint is enabled by default
Diffstat (limited to 'script')
-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 bde214b0..c18a7fdf 100644
--- a/script/config/config.lua
+++ b/script/config/config.lua
@@ -201,7 +201,7 @@ local Template = {
['Lua.semantic.variable'] = Type.Boolean >> true,
['Lua.semantic.annotation'] = Type.Boolean >> true,
['Lua.semantic.keyword'] = Type.Boolean >> false,
- ['Lua.hint.enable'] = Type.Boolean >> false,
+ ['Lua.hint.enable'] = Type.Boolean >> true,
['Lua.hint.paramType'] = Type.Boolean >> true,
['Lua.hint.setType'] = Type.Boolean >> false,
['Lua.hint.paramName'] = Type.String >> 'All',