summaryrefslogtreecommitdiff
path: root/script/provider
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-03-12 15:25:19 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-03-12 15:25:19 +0800
commit1b54dfc2def587eb158dd24c7baa2f60ffb95cde (patch)
treebbec22ad646d1ba016740adf6f2872f6426a8358 /script/provider
parent9828b5e6e0c513dc20f756db1350aa6e38faa5b7 (diff)
downloadlua-language-server-1b54dfc2def587eb158dd24c7baa2f60ffb95cde.zip
dont search beSet in set
Diffstat (limited to 'script/provider')
-rw-r--r--script/provider/provider.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/script/provider/provider.lua b/script/provider/provider.lua
index bfd51416..66031f15 100644
--- a/script/provider/provider.lua
+++ b/script/provider/provider.lua
@@ -271,7 +271,7 @@ proto.on('textDocument/didChange', function (params)
if not files.isLua(uri) and not files.isOpen(uri) then
return
end
- log.debug('changes', util.dump(changes))
+ --log.debug('changes', util.dump(changes))
local text = tm(uri, changes)
files.setText(uri, text, true)
end)