summaryrefslogtreecommitdiff
path: root/script/core/completion
AgeCommit message (Collapse)Author
2024-09-06fix autocompletionNeOzay
2024-08-01fix: incorrect `CompletionItemKind` for postfix snippetsTyler Miller
2024-06-28fix: respect showParams config for local function completionDCsunset
2024-06-25Add 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-25fix: restore completion ordercarsakiller
2024-05-25fix: remove callbackcarsakiller
2024-05-23fix: greedy matchcarsakiller
2024-05-23add: completion of lua symbol referencescarsakiller
2024-02-21add infer function param typefesily
2023-12-29Pad `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-14fix type infer in overload最萌小汐
2023-09-25feat: support param snippets with spaceLewis 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-16supports `---@enum (key)`最萌小汐
2023-07-21fix missing fields最萌小汐
2023-07-21fix最萌小汐
2023-07-20improve completion label of table fields最萌小汐
2023-07-19sort results of completion最萌小汐
2023-06-13more smart completion for `continue`最萌小汐
fix #2042
2023-03-09check nil最萌小汐
fix #1978
2023-03-01snip for `continue` and `ifcall`最萌小汐
2023-01-31check nil最萌小汐
2023-01-30fix #1851最萌小汐
2023-01-30respect quotation marks最萌小汐
2023-01-16fix #1824最萌小汐
2023-01-16improve type infer of recursion alias最萌小汐
2023-01-09trace-global最萌小汐
2022-12-16mark as incomplete最萌小汐
2022-12-13修复补全性能问题CppCXY
2022-12-09improve auto-require最萌小汐
#1745
2022-12-01Merge branch 'master' into feature/auto-require-without-initSewbacca
2022-11-23fix #1717最萌小汐
2022-11-18Allow auto completion for complex dir structuresSewbacca
2022-11-18Added complex require pathsSewbacca
2022-11-11Locale 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-08support enums with runtime values最萌小汐
resolved #1411
2022-11-07fix warning最萌小汐
2022-11-06improve performance最萌小汐
2022-11-06type check: check the fields in table最萌小汐
resolve #1434
2022-11-03fix completion detail最萌小汐
2022-11-03supports completion with table field of function最萌小汐
resolve #1533
2022-11-02cleanup最萌小汐
2022-11-02`---@see` use workspace-symbol最萌小汐
#1344
2022-10-25some fix最萌小汐
2022-10-25completion checks visible最萌小汐
#1316
2022-10-20ignore varargs最萌小汐
if a function only has varargs and has `---@overload`, the varargs will be ignored resolve #1641
2022-10-20fix #1642最萌小汐
2022-10-20fix最萌小汐