diff options
Diffstat (limited to 'changelog.md')
-rw-r--r-- | changelog.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/changelog.md b/changelog.md index 99232ab4..1178de72 100644 --- a/changelog.md +++ b/changelog.md @@ -18,6 +18,13 @@ [3]: string = "c", } ``` +* `NEW` completion: supports enums in `fun()` + ```lua + ---@type fun(x: "'aaa'"|"'bbb'") + local f + + f(--[[show `'aaa'` and `'bbb'` here]]) + ``` * `FIX` loading workspace may hang * `FIX` `debug.getuservalue` and `debug.setuservalue` should not exist in `Lua 5.1` * `FIX` infer of `---@type class[][]` |