summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-07-15 20:08:59 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-07-15 20:08:59 +0800
commit206b9ff94395708390595e73ed2b2528e7a84cad (patch)
tree7f72e1cd8cbcbe21de5a233da4f948019c5dff98
parentc22679b21f0ed689dc269d49f05712fada02f7ce (diff)
downloadlua-language-server-206b9ff94395708390595e73ed2b2528e7a84cad.zip
update changelog
-rw-r--r--changelog.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md
index 24cf3698..07201f59 100644
--- a/changelog.md
+++ b/changelog.md
@@ -10,6 +10,14 @@
---@field [2] number
---@field [3] number
```
+* `NEW` hover: view array `local array = {'a', 'b', 'c'}`:
+ ```lua
+ local array: {
+ [1]: string = "a",
+ [2]: string = "b",
+ [3]: string = "c",
+ }
+ ```
* `FIX` loading workspace may hang
* `FIX` `debug.getuservalue` and `debug.setuservalue` should not exist in `Lua 5.1`
* `FIX` infer of `---@type class[][]`