summaryrefslogtreecommitdiff
path: root/changelog.md
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2022-06-25 20:13:42 +0800
committer最萌小汐 <sumneko@hotmail.com>2022-06-25 20:13:42 +0800
commit2c6f0f9bf83f9a44c466aaf0d45ed9f8eab6c117 (patch)
tree96b11b2863b0a1e10158e6ad6cc5df3b8fb74716 /changelog.md
parent7b809496a5a4be6a182d715b264493cb39c98674 (diff)
downloadlua-language-server-2c6f0f9bf83f9a44c466aaf0d45ed9f8eab6c117.zip
resolve #1226
semicolons and parentheses can be used in `DocTable`
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 c9b64e0f..5c99dd5e 100644
--- a/changelog.md
+++ b/changelog.md
@@ -28,6 +28,11 @@
local n2 = f(0) -- `n2` is `number`
local n3 = f(0, 0) -- `n3` is `string`
```
+* `CHG` semicolons and parentheses can be used in `DocTable`
+ ```lua
+ ---@type { x: fun():boolean; y: boolean }
+ ---@type { (x: fun():boolean), y: boolean }
+ ```
* `CHG` improve experience for diagnostics and semantic-tokens
* `FIX` diagnostics flash when opening a file
* `FIX` sometimes workspace diagnostics are not triggered