diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2020-11-05 17:15:05 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2020-11-05 17:15:05 +0800 |
commit | cb30a8f68bb18e210a2a2853aaaa583507bdf1b8 (patch) | |
tree | 21899cc66fd5375cfe0d38dcb4030bc64c8ea3ba /script-beta/config.lua | |
parent | dbb99f3919751bea59e8ffffcda9bb968c74a8f5 (diff) | |
download | lua-language-server-cb30a8f68bb18e210a2a2853aaaa583507bdf1b8.zip |
性能相关的选项
Diffstat (limited to 'script-beta/config.lua')
-rw-r--r-- | script-beta/config.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/script-beta/config.lua b/script-beta/config.lua index 02f4cf25..8927f9b1 100644 --- a/script-beta/config.lua +++ b/script-beta/config.lua @@ -140,6 +140,7 @@ local ConfigTemplate = { viewString = {true, Boolean}, viewStringMax = {1000, Integer}, viewNumber = {true, Boolean}, + fieldInfer = {3000, Integer}, }, color = { mode = {'Semantic', String}, @@ -151,6 +152,10 @@ local ConfigTemplate = { enable = {false, Boolean}, path = {'.vscode/lua-plugin/*.lua', String}, }, + intelliSense = { + searchDepth = {0, Integer}, + fastGlobal = {true, Boolean}, + }, } local OtherTemplate = { |