diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-04-16 19:19:14 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-04-16 19:19:14 +0800 |
commit | 4ba6d16c4d3347b104208dad127d9ea6415e66c2 (patch) | |
tree | 648c78bf91c2da090a0274b37c57759547f92283 /script | |
parent | b96fcdde819031b20c49e2070a3aaf070fb74088 (diff) | |
download | lua-language-server-4ba6d16c4d3347b104208dad127d9ea6415e66c2.zip |
disable hint by default
Diffstat (limited to 'script')
-rw-r--r-- | script/config/config.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/config/config.lua b/script/config/config.lua index c18a7fdf..bde214b0 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 >> true, + ['Lua.hint.enable'] = Type.Boolean >> false, ['Lua.hint.paramType'] = Type.Boolean >> true, ['Lua.hint.setType'] = Type.Boolean >> false, ['Lua.hint.paramName'] = Type.String >> 'All', |