summaryrefslogtreecommitdiff
path: root/changelog.md
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2022-07-08 17:38:44 +0800
committer最萌小汐 <sumneko@hotmail.com>2022-07-08 17:38:44 +0800
commitdb4ae9c48b7d2f97823469e8a32aff170ecba12f (patch)
treed167f6430773ebd3fd93b31611b1ad98bec60aaa /changelog.md
parent103aee69bf717936432e2739695305ce2058786e (diff)
downloadlua-language-server-db4ae9c48b7d2f97823469e8a32aff170ecba12f.zip
resolve #993 supports multi-types
Diffstat (limited to 'changelog.md')
-rw-r--r--changelog.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md
index 4a16c17b..8f76c0f6 100644
--- a/changelog.md
+++ b/changelog.md
@@ -15,6 +15,11 @@
* `unknown-operator`
* `NEW` settings:
* `diagnostics.unusedLocalExclude`
+* `CHG` support multi-type:
+ ```lua
+ ---@type number, _, boolean
+ local a, b, c -- `a` is `number`, `b` is `unknown`, `c` is `boolean`
+ ```
* `FIX` [#880](https://github.com/sumneko/lua-language-server/issues/880)
* `FIX` [#1284](https://github.com/sumneko/lua-language-server/issues/1284)
* `FIX` [#1292](https://github.com/sumneko/lua-language-server/issues/1292)