Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the issue of Zed and Emacs not being able to autocomplete due to …
…`{ isIncomplete: false, items }`. According to this explanation: > result: CompletionItem[] | CompletionList | null. If a CompletionItem[] is provided, it is interpreted as complete. So it is the same as { isIncomplete: false, items }. I suspect that many clients do not handle the situation of `{ isIncomplete: false, items }`. They default to only handling `CompletionItem[]`.
- Loading branch information