diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-01-05 21:23:38 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-01-05 21:23:38 +0800 |
commit | b62eba6d93fc026873d29dc865cd3f745cb403fd (patch) | |
tree | 9ddb1bb78113f8201e634a2e3c305f4e0985d02f /script/provider/provider.lua | |
parent | a6cfc1162c24e1621076bc96b36768873bbaf9d4 (diff) | |
download | lua-language-server-b62eba6d93fc026873d29dc865cd3f745cb403fd.zip |
improve performance
Diffstat (limited to 'script/provider/provider.lua')
-rw-r--r-- | script/provider/provider.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/script/provider/provider.lua b/script/provider/provider.lua index 3c6f19ca..010bc24e 100644 --- a/script/provider/provider.lua +++ b/script/provider/provider.lua @@ -353,6 +353,7 @@ end) proto.on('textDocument/completion', function (params) --log.info(util.dump(params)) local core = require 'core.completion' + --log.debug('textDocument/completion') --log.debug('completion:', params.context and params.context.triggerKind, params.context and params.context.triggerCharacter) local uri = params.textDocument.uri if not files.exists(uri) then |