Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-07-13 | Merge branch 'fix-missing-check-for-'inject-field'' into ↵ | NeOzay | |
fixes-a-specific-case-for-getVisibleType | |||
2024-07-13 | fix a specific case for getVisibleType | NeOzay | |
2024-07-13 | moves the match function outside of getVisibleType function | NeOzay | |
2024-07-12 | added lua regular expression support for Lua.doc.<scope>Name | NeOzay | |
2024-07-08 | fix: correction for `exact` class | NeOzay | |
2024-07-08 | fix: add a missing check for inject-field diagnostics | NeOzay | |
2024-07-02 | 处理token超出行范围的问题 | 最萌小汐 | |
2024-07-01 | Merge branch 'master' into fix-params | 最萌小汐 | |
2024-07-01 | perf: Optimize undefined-field check early break logic | Tom Lau | |
The current early break only wants to check if there are any definition. There is no need to fetch the full definitions list. We can early break as soon as we found the 1st one. | |||
2024-07-01 | perf: Optimize work distribution in multi-threaded `--check` | Tom Lau | |
The current hash function used to distribute work seems not perfect. We can actually use round robin to distribute after sorting file list. | |||
2024-06-28 | fix: respect showParams config for local function completion | DCsunset | |
2024-06-27 | Merge branch 'master' into bugfix/cli_default_severity | 最萌小汐 | |
2024-06-26 | fix: default severity in CLI with partial 'diagnostics.severity' config | Tom Lau | |
2024-06-25 | Merge branch 'master' into master | Benjamin Valpey | |
2024-06-25 | Add postfix snippet for `unpack` | Yi Ming | |
2024-06-19 | Merge branch 'LuaLS:master' into master | Benjamin Valpey | |
2024-06-19 | Add optional support for lambda-style functions | Benjamin Valpey | |
2024-06-18 | Fix plugin arg arrays when paths contain numbers | JanSharp | |
Specifically to prevent it from trying to match the tostring-ed numeric number keys of plain arrays with config folder paths, which can lead to false positives if those paths contain numbers and then ultimately results in only a single argument out of the arguments array being passed along | |||
2024-06-13 | 判空 | 最萌小汐 | |
2024-06-11 | 改用更好的判断方式 | 最萌小汐 | |
2024-06-11 | `FIX` Sometimes providing incorrect autocompletion when chaining calls | 最萌小汐 | |
2024-06-05 | `FIX` Autocompletion for enum values is not available in some cases | 最萌小汐 | |
2024-06-05 | 获取工作区符号改为同步 | 最萌小汐 | |
2024-06-05 | 修复thread的meta文件 | 最萌小汐 | |
2024-06-05 | Revert "适配 bee.sys" | 最萌小汐 | |
This reverts commit c59bd7f4765a8016dfbbf3c8c9879387ca86acfd. | |||
2024-06-05 | Revert "update bee" | 最萌小汐 | |
This reverts commit 719d7c2ba63c5a0207604a40cdf0b78a02b0eb78. | |||
2024-06-05 | Revert "update bee" | 最萌小汐 | |
This reverts commit a47b432b13f1d4bfa415185bb305b3672bc22d7d. | |||
2024-06-05 | Revert "Revert "没必要sleep"" | 最萌小汐 | |
This reverts commit e00877e09dd86208f18dd11d6aab444301ce8b03. | |||
2024-06-04 | don't do diagnostics when workspace is not ready | Folke Lemaitre | |
2024-05-27 | Merge pull request #2680 from emmericp/throttle-awaits | 最萌小汐 | |
Throttle calls to await.delay() in some diagnostics | |||
2024-05-25 | fix: restore completion order | carsakiller | |
2024-05-25 | fix: remove callback | carsakiller | |
2024-05-24 | Throttle calls to await.delay() in some diagnostics | Paul Emmerich | |
These 5 diagnostics cause ~70% of all calls to await.delay() by diagnostics which in turn is about ~20% of the total runtime of diagnostics. Out of these diagnostics only assign-type-mismatch commonly exceeds runtimes of 100ms (worst observed in my dataset was 7 seconds) and even then it still attempts to call await.delay() over 1500 times per second, so throttling by a factor of 15 is still fine. | |||
2024-05-23 | Merge branch 'master' into 2175-md-symbol-reference | carsakiller | |
2024-05-23 | fix: greedy match | carsakiller | |
2024-05-23 | add: completion of lua symbol references | carsakiller | |
2024-05-16 | Merge pull request #2664 from emmericp/faster-checks | 最萌小汐 | |
Disable await.delay() when running --check | |||
2024-05-13 | Disable await.delay() when running --check | Paul Emmerich | |
This makes --check about 25% faster. | |||
2024-05-13 | 优化性能 | 最萌小汐 | |
2024-05-11 | Revert "没必要sleep" | 最萌小汐 | |
This reverts commit 739449db06a48ba511b0044934f98e9bfe40e30d. | |||
2024-05-11 | 没必要sleep | 最萌小汐 | |
2024-05-11 | 整理代码 | 最萌小汐 | |
2024-05-11 | 支持根据参数类型选择函数定义 | 最萌小汐 | |
2024-05-11 | 支持转到实现 | 最萌小汐 | |
2024-05-11 | 暂存-转到实现 | 最萌小汐 | |
2024-05-10 | 漏了一处 | 最萌小汐 | |
2024-05-10 | 跟进修改 | 最萌小汐 | |
2024-05-10 | 适配 bee.sys | 最萌小汐 | |
2024-05-10 | 添加一些参数定义 | 最萌小汐 | |
2024-05-10 | fix: convert ENV value to bool | carsakiller | |