diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-11-16 21:15:57 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-11-18 17:11:15 +0800 |
commit | be7784375a1da83ded98af98ae87d36b2b7f4aa2 (patch) | |
tree | 8c52e55bc272259b16cf2dc6d343ab70a1293b99 /script | |
parent | eae8ad580971c7a12c1324476fa0335551445cef (diff) | |
download | lua-language-server-be7784375a1da83ded98af98ae87d36b2b7f4aa2.zip |
update
Diffstat (limited to 'script')
-rw-r--r-- | script/core/searcher.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/script/core/searcher.lua b/script/core/searcher.lua index 4ce89fd1..6d1a03b6 100644 --- a/script/core/searcher.lua +++ b/script/core/searcher.lua @@ -939,9 +939,9 @@ function m.searchRefsByID(status, suri, expect, mode) end local stepCount = 0 - local stepMaxCount = 1e3 + local stepMaxCount = 1e4 if mode == 'allref' or mode == 'alldef' then - stepMaxCount = 1e4 + stepMaxCount = 1e5 end function searchStep(uri, id, field) |