|
2 | 2 |
|
3 | 3 | [中文Log](CHANGELOG_CN.md) |
4 | 4 |
|
| 5 | +# 0.9.9 |
| 6 | + |
| 7 | +`NEW` Support generic alias fold |
| 8 | + |
| 9 | +`NEW` Support `code style check`, which powered by `emmyluacodestyle` |
| 10 | + |
| 11 | +`NEW` Basic table declaration field names autocompletion. |
| 12 | + |
| 13 | +`FIX` Fix possible panic due to integer overflow when calculating pows. |
| 14 | + |
| 15 | +`NEW` Support compile by winodws mingw |
| 16 | + |
| 17 | +`NEW` `emmylua_check` now supports `workspace.library` |
| 18 | + |
| 19 | +`FIX` Fix std resource loaded for cli tools |
| 20 | + |
| 21 | +`FIX` Fix `self` parameter regard as unuseful issue |
| 22 | + |
| 23 | +`NEW` Add `emmylua_check` cli tool, you can use it to check lua code. you can install it by `cargo install emmylua_check` |
| 24 | + |
| 25 | +`NEW` all the crates release to crates.io. now you can get `emmylua_parser`, `emmylua_code_analysis`, `emmylua_ls`, `emmylua_doc_cli` from crates.io. |
| 26 | +```shell |
| 27 | +cargo install emmylua_ls |
| 28 | +cargo install emmylua_doc_cli |
| 29 | +``` |
| 30 | + |
| 31 | +`CHG` refactor `template system`, optimize the generic infer |
| 32 | + |
| 33 | +`FIX` now configurations are loaded properly in NeoVim in cases when no extra LSP configuration parameters are provided |
| 34 | + |
| 35 | +`CHG` extended humanization of small constant table types |
| 36 | + |
| 37 | +`NEW` Add configuration option `workspace.moduleMap` to map old module names to new ones. The `moduleMap` is a list of mappings, for example: |
| 38 | + |
| 39 | +```json |
| 40 | +{ |
| 41 | + "workspace": { |
| 42 | + "moduleMap": [ |
| 43 | + { |
| 44 | + "pattern": "^lib(.*)$", |
| 45 | + "replace": "script$1" |
| 46 | + } |
| 47 | + ] |
| 48 | + } |
| 49 | +} |
| 50 | +``` |
| 51 | + |
| 52 | +This feature ensures that `require` works correctly. If you need to translate module names starting with `lib` to use `script`, add the appropriate mapping here. |
| 53 | + |
| 54 | +`CHG` Refactor project structure, move all resources into executable binary |
| 55 | + |
| 56 | +`NEW` Add Develop Guide |
| 57 | + |
| 58 | +`NEW` support `workspace/didChangeConfiguration` notification for neovim |
| 59 | + |
| 60 | +`CHG` refactor `semantic token` |
| 61 | + |
| 62 | +`NEW` support simple generic type instantiation based on the passed functions |
| 63 | + |
| 64 | +`FIX` Fix find generic class template parameter issue |
| 65 | + |
5 | 66 | # 0.9.8 |
6 | 67 |
|
7 | 68 | `FIX` Fixed some multiple return value inference errors |
|
0 commit comments