summaryrefslogtreecommitdiff
path: root/script/core/completion
AgeCommit message (Collapse)Author
2022-06-28diag `missing-return`最萌小汐
2022-06-27remove some unused fields and make sure doc type array gets included as a ↵Kevin Hahn
compiled node
2022-06-27fix some cases where we would return emus twice or would screw up other ↵Kevin Hahn
completions
2022-06-27enable autocomplete of array enumKevin Hahn
2022-06-26#1207最萌小汐
return names and parentheses can be used in `DocFunction`
2022-06-23fix completion in tablefield enums最萌小汐
2022-06-23update最萌小汐
2022-06-23update最萌小汐
2022-06-22update最萌小汐
2022-06-21fix最萌小汐
2022-06-15cleanup最萌小汐
2022-06-14#1207 add sample for description for LuaDoc最萌小汐
2022-06-13new runner最萌小汐
2022-06-09#1061 completion for `doc.type.code`最萌小汐
2022-06-09view infer must specify uri最萌小汐
2022-06-07cleanup最萌小汐
2022-04-26fix #1092最萌小汐
2022-04-26cleanup最萌小汐
2022-04-26cleanup最萌小汐
2022-04-25add completion and semantic for `@cast`最萌小汐
2022-04-24check nils最萌小汐
2022-04-17cleanup最萌小汐
2022-04-16fix #1061最萌小汐
2022-04-16fix #1057最萌小汐
2022-04-15improve performance最萌小汐
2022-04-14cheanup最萌小汐
2022-04-13cleanup最萌小汐
2022-04-13cleanup最萌小汐
2022-04-13cleanup最萌小汐
2022-04-13cleanup最萌小汐
2022-04-11fix #1037最萌小汐
2022-04-10fix repeated docname最萌小汐
2022-04-09fix(completion): push (#1022) to 3.0kevinhwang91
2022-04-08Merge branch 'master' into 3.0最萌小汐
2022-04-08cleanup最萌小汐
2022-04-07update最萌小汐
2022-04-07doc.type.boolean最萌小汐
2022-04-06update最萌小汐
2022-04-06update最萌小汐
2022-04-06feat(completion): use Lua code as snippet descriptionkevinhwang91
2022-04-06chore(postfix): pretty postfix descriptionkevinhwang91
Under Lua code, we should remove redundant placeholders. Unfortunately, $%d placeholders will result in empty string.
2022-04-06Merge commit '63b360689f0c2c99a1ae410518f6866f49972f98' into 3.0最萌小汐
2022-04-05fix(completion): limit extra lineskevinhwang91
2022-04-05update最萌小汐
2022-04-04fix(completion): use args table instead of args string to parse snippetkevinhwang91
For now, we parse the `@param f fun(a: any, b: any)` as two placeholders instead of one. BTW, use table have a slightly better performance than spliting args string.
2022-04-04#992最萌小汐
using `Snippet` only when `callSnippet` is `Both`
2022-04-04fix(completion): optional arguments may not continuedkevinhwang91
If the arguments are all optional or variable until the end, we can truncate them directly.
2022-04-03feat(completion): truncate arguments for callSnippetkevinhwang91
The callSnippet always expands all the optional arguments and variable argument that is annoying. To truncate optional arguments and variable arguments help users more frequently use `callSnippet`. We already have the label and signature to get the total arguments. This behavior is like tsserver.
2022-04-03fix formattingCrollie Rollz
2022-04-03fix(completion): call OOP emitter without colon syntaxCrollie Rollz