Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-09-06 | fix autocompletion | NeOzay | |
2024-08-01 | fix: incorrect `CompletionItemKind` for postfix snippets | Tyler Miller | |
2024-06-28 | fix: respect showParams config for local function completion | DCsunset | |
2024-06-25 | Add postfix snippet for `unpack` | Yi Ming | |
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-05-25 | fix: restore completion order | carsakiller | |
2024-05-25 | fix: remove callback | carsakiller | |
2024-05-23 | fix: greedy match | carsakiller | |
2024-05-23 | add: completion of lua symbol references | carsakiller | |
2024-02-21 | add infer function param type | fesily | |
2023-12-29 | Pad `return` type annotations when required. | Clay Sweetser | |
Place a space between `---` and `@return` when generating documentation for a function on a line like `--- `. This mimics how `@param` documentation is generated. | |||
2023-11-14 | fix type infer in overload | 最萌小汐 | |
2023-09-25 | feat: support param snippets with space | Lewis Russell | |
Currently LuaLS will expand: ```lua ---<??> local x = function (x, y) end ``` with: ```lua ---comment ---@param x any ---@param y any local x = function (x, y) end ``` This change adds a variation of this snippet to expand: ```lua --- <??> local x = function (x, y) end ``` with: ```lua --- comment --- @param x any --- @param y any local x = function (x, y) end ``` | |||
2023-08-16 | supports `---@enum (key)` | 最萌小汐 | |
2023-07-21 | fix missing fields | 最萌小汐 | |
2023-07-21 | fix | 最萌小汐 | |
2023-07-20 | improve completion label of table fields | 最萌小汐 | |
2023-07-19 | sort results of completion | 最萌小汐 | |
2023-06-13 | more smart completion for `continue` | 最萌小汐 | |
fix #2042 | |||
2023-03-09 | check nil | 最萌小汐 | |
fix #1978 | |||
2023-03-01 | snip for `continue` and `ifcall` | 最萌小汐 | |
2023-01-31 | check nil | 最萌小汐 | |
2023-01-30 | fix #1851 | 最萌小汐 | |
2023-01-30 | respect quotation marks | 最萌小汐 | |
2023-01-16 | fix #1824 | 最萌小汐 | |
2023-01-16 | improve type infer of recursion alias | 最萌小汐 | |
2023-01-09 | trace-global | 最萌小汐 | |
2022-12-16 | mark as incomplete | 最萌小汐 | |
2022-12-13 | 修复补全性能问题 | CppCXY | |
2022-12-09 | improve auto-require | 最萌小汐 | |
#1745 | |||
2022-12-01 | Merge branch 'master' into feature/auto-require-without-init | Sewbacca | |
2022-11-23 | fix #1717 | 最萌小汐 | |
2022-11-18 | Allow auto completion for complex dir structures | Sewbacca | |
2022-11-18 | Added complex require paths | Sewbacca | |
2022-11-11 | Locale and completion additions for 3.6.0 annotations (#1683) | carsakiller | |
* add: new annotations to completion * add: en-us descriptions for access modifiers * add: en-us descriptions for other locales * add: update @field description for `pt-br` and `zh-cn` | |||
2022-11-08 | support enums with runtime values | 最萌小汐 | |
resolved #1411 | |||
2022-11-07 | fix warning | 最萌小汐 | |
2022-11-06 | improve performance | 最萌小汐 | |
2022-11-06 | type check: check the fields in table | 最萌小汐 | |
resolve #1434 | |||
2022-11-03 | fix completion detail | 最萌小汐 | |
2022-11-03 | supports completion with table field of function | 最萌小汐 | |
resolve #1533 | |||
2022-11-02 | cleanup | 最萌小汐 | |
2022-11-02 | `---@see` use workspace-symbol | 最萌小汐 | |
#1344 | |||
2022-10-25 | some fix | 最萌小汐 | |
2022-10-25 | completion checks visible | 最萌小汐 | |
#1316 | |||
2022-10-20 | ignore varargs | 最萌小汐 | |
if a function only has varargs and has `---@overload`, the varargs will be ignored resolve #1641 | |||
2022-10-20 | fix #1642 | 最萌小汐 | |
2022-10-20 | fix | 最萌小汐 | |