summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-07-09 14:48:07 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-07-09 14:48:07 +0800
commitf1da3cff2805d871e527c23a790b5ec6cfb9439e (patch)
tree529ab5cadfa389b3e105bd06829ee4862532076e
parent54d5847827757b7c31ad800726126cb45fcd574b (diff)
downloadlua-language-server-f1da3cff2805d871e527c23a790b5ec6cfb9439e.zip
fix #592
-rw-r--r--changelog.md3
-rw-r--r--script/provider/capability.lua2
2 files changed, 5 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md
index 97272a40..2d9e5c81 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,8 @@
# changelog
+## 2.2.3
+* `FIX` [#592](https://github.com/sumneko/lua-language-server/issues/592)
+
## 2.2.2
`2021-7-9`
* `FIX` incorrect syntax color
diff --git a/script/provider/capability.lua b/script/provider/capability.lua
index b8a56b7b..9bb4ed1e 100644
--- a/script/provider/capability.lua
+++ b/script/provider/capability.lua
@@ -4,6 +4,8 @@ local client = require 'client'
local platform = require 'bee.platform'
local completion = require 'provider.completion'
+require 'provider.semantic-tokens'
+
local m = {}
local function testFileEvents(initer)