diff options
author | qwertycxz <gmail2@qq.com> | 2024-07-14 08:22:24 +0800 |
---|---|---|
committer | qwertycxz <gmail2@qq.com> | 2024-07-14 08:22:24 +0800 |
commit | 74a38036bc64940520502fc8f6a28f710ce42dbb (patch) | |
tree | ae22174ea7ba477af2c8677596473d5641c063d3 /changelog.md | |
parent | ddc96bd1ec0be95a985ab82531763578bf7eb793 (diff) | |
download | lua-language-server-74a38036bc64940520502fc8f6a28f710ce42dbb.zip |
Fixed wholeMatch function
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/changelog.md b/changelog.md index 87ef33ef..68b6317b 100644 --- a/changelog.md +++ b/changelog.md @@ -4,9 +4,10 @@ <!-- Add all new changes here. They will be moved under a version at release --> * `NEW` Add postfix snippet for `unpack` * `FIX` `diagnostics.severity` defaulting to "Warning" when run using `--check` [#2730](https://github.com/LuaLS/lua-language-server/issues/2730) -* `NEW` Add support for lambda style functions, `|paramList| expr` is syntactic sugar for `function(paramList) return expr end` -* `FIX` Respect `completion.showParams` config for local function completion +* `NEW` Add support for lambda style functions, `|paramList| expr` is syntactic sugar for `function(paramList) return expr end` +* `FIX` Respect `completion.showParams` config for local function completion * `CHG` Improve performance of multithreaded `--check` and `undefined-field` diagnostic +* `FIX` Addons can now self-recommend as expected. Fixed by correcting the `wholeMatch` function ## 3.9.3 `2024-6-11` @@ -145,7 +146,7 @@ Cat = 1, Dog = 2, } - + ---@param animal userdata ---@param atp AnimalType ---@return boolean |