diff options
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/changelog.md b/changelog.md index eaa3e8ed..96177af4 100644 --- a/changelog.md +++ b/changelog.md @@ -8,9 +8,9 @@ + `Lua.completion.requireSeparator` * `NEW` diagnostics: + `different-requires` -* `NEW` supports `---@CustomClass<string, number>` +* `NEW` `---@CustomClass<string, number>` * `NEW` supports `$/cancelRequest` -* `NEW` supports `EventEmitter` +* `NEW` `EventEmitter` ```lua --- @class Emit --- @field on fun(eventName: string, cb: function) @@ -28,6 +28,11 @@ -- should be s: string end) ``` +* `NEW` `---@module 'moduleName'` + ```lua + ---@module 'mylib' + local lib -- the same as `local lib = require 'mylib'` + ``` * `CHG` hover: improve showing multi defines * `CHG` hover: improve showing multi comments at enums * `CHG` hover: shows method |