aboutsummaryrefslogtreecommitdiffstats
path: root/lsp/copilot.lua
Commit message (Collapse)AuthorAgeFilesLines
* fix(copilot): use correct error variable #4240Stefan van der Wolf2025-12-151-1/+1
| | | | | | | | | Problem: The client:exec_cmd callback was incorrectly referencing to err variable from the outer scope instead of the cmd_err variable from its on scope. Could cause problems when err is nil but the cmd_err is not. Solution: Changed the reference from err to cmd_err
* docs(copilot): add instructions to enable lsp inline completion (#4111)Alexandre Teoi2025-10-031-0/+27
|
* fix(copilot): device flow authentication #4038Robert Muir2025-08-251-2/+2
| | | | Current code will always trigger error (unless you are already authd), because result.code is invalid. result.userCode must be used instead.
* ci(lint): require type annotation #4034Justin M. Keyes2025-08-241-0/+1
|
* feat(copilot): initial support for copilot-language-server #4029Yi Ming2025-08-241-0/+107