diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-11-16 21:15:57 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-11-16 21:15:57 +0800 |
commit | 4d1a132100b8f4de26d2af6f69e2d98972ab59ea (patch) | |
tree | 9e9c2f6941b5a96e28a43785f74a2248eae5f047 /script | |
parent | e79c7c3b4e6ed66d4f43936510a29617485f5818 (diff) | |
download | lua-language-server-4d1a132100b8f4de26d2af6f69e2d98972ab59ea.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) |