summaryrefslogtreecommitdiff
path: root/test/completion
AgeCommit message (Collapse)Author
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-20improve completion label of table fields最萌小汐
2023-07-19sort results of completion最萌小汐
2023-06-13completion for quoted fields最萌小汐
fix #2088
2023-06-13more smart completion for `continue`最萌小汐
fix #2042
2023-01-30respect quotation marks最萌小汐
2023-01-16support `---@meta [name]`最萌小汐
once declared `name`, user can only require this file by declared name meta file can not be required with name `_`
2023-01-16fix #1824最萌小汐
2022-12-08cleanup最萌小汐
2022-11-23fix #1717最萌小汐
2022-11-23fix #1704最萌小汐
2022-11-15fix #1698最萌小汐
2022-11-08support enums with runtime values最萌小汐
resolved #1411
2022-11-03supports completion with table field of function最萌小汐
resolve #1533
2022-11-02fix tests最萌小汐
2022-11-02`---@see` use workspace-symbol最萌小汐
#1344
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最萌小汐
2022-10-12search fields by chain exp最萌小汐
resolve #1222
2022-10-12cleanup最萌小汐
2022-09-15fix #1439最萌小汐
2022-08-17pass tests最萌小汐
2022-08-13fix #1451最萌小汐
2022-07-29fix #1403最萌小汐
2022-07-29fix #1395最萌小汐
2022-07-18#1255 completion for `doc.enum`最萌小汐
2022-07-15resolve #1224 show comments for `doc.field`最萌小汐
2022-07-05resolve #899 no longer generate parameter types最萌小汐
with setting `completion.callSnippet`
2022-06-27add unit tests for arraysKevin Hahn
2022-06-23fix completion in tablefield enums最萌小汐
2022-06-22fix最萌小汐
2022-06-09#1061 completion for `doc.type.code`最萌小汐
2022-04-25add completion and semantic for `@cast`最萌小汐
2022-04-19fix #1051最萌小汐
2022-04-19Revert "fix #3.1.1"最萌小汐
This reverts commit 7657fefe4ab5b6ba7dcb7df7e766c115afa25787.
2022-04-19fix #3.1.1最萌小汐
2022-04-16update hover最萌小汐
2022-04-14cleanup最萌小汐
2022-04-10fix repeated docname最萌小汐
2022-04-09fix(completion): push (#1022) to 3.0kevinhwang91
2022-04-08ref includes def最萌小汐
2022-04-08Merge branch 'master' into 3.0最萌小汐
2022-04-06update最萌小汐
2022-04-06feat(completion): use Lua code as snippet descriptionkevinhwang91
2022-04-06Merge commit '63b360689f0c2c99a1ae410518f6866f49972f98' into 3.0最萌小汐
2022-04-05update最萌小汐