zed/crates/copilot
2023-03-28 09:42:01 -07:00
..
src Reuse existing suggestion when inserting to avoid flickering 2023-03-28 09:42:01 -07:00
Cargo.toml Successfully fetch completions from Copilot 2023-03-28 09:42:00 -07:00
readme.md Add copilot crate 2023-03-28 09:41:59 -07:00

Basic idea:

Run the copilot-node-server as an LSP Reuse our LSP code to use it

Issues:

  • Re-use our github authentication for copilot - ??
  • Integrate Copilot suggestions with SuggestionMap

THE PLAN:

  • Copilot crate.
  • Instantiated with a project / listens to them
  • Listens to events from the project about adding worktrees
  • Manages the copilot language servers per worktree
  • Editor <-?-> Copilot

From anotonio in Slack:

  • soooo regarding copilot i was thinking… if it doesnt really behave like a language server (but they implemented like that because of the protocol, etc.), it might be nice to just have a singleton that is not even set when were signed out. when we sign in, we set the global. then, the editor can access the global (e.g. cx.global::<Option>) after typing some character (and with some debouncing mechanism). the Copilot struct could hold a lsp::LanguageServer and then our job is to write an adapter that can then be used to start the language server, but its kinda orthogonal to the language servers we store in the project. what do you think?