diff options
-rw-r--r-- | changelog.md | 1 | ||||
-rw-r--r-- | script/provider/capability.lua | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 44640f46..2602bc2d 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,7 @@ ## 1.14.2 * `FIX` [#375](https://github.com/sumneko/lua-language-server/issues/375) +* `FIX` [#376](https://github.com/sumneko/lua-language-server/issues/376) ## 1.14.1 `2021-2-2` diff --git a/script/provider/capability.lua b/script/provider/capability.lua index e7219c93..79261129 100644 --- a/script/provider/capability.lua +++ b/script/provider/capability.lua @@ -101,6 +101,7 @@ function m.getIniter() nonil.enable() if not client.info.capabilities.textDocument.completion.dynamicRegistration then initer.completionProvider = { + resolveProvider = true, triggerCharacters = allWords(), } end |