lexical-lsp / lexical

Lexical is a next-generation elixir language server
776 stars 77 forks source link

Refactor: Pass env into completion in remote control #733

Closed scohen closed 1 month ago

scohen commented 1 month ago

In preparation for suggesting modules to import, it became apparent we'd need mroe than just the document string going into the completion call. The completion environment seems like a good choice, as it offers the document, analysis, and a host of other features related to figuring out which context you're in.

This also allowed us to push elixir_sense specific logic into the completions module in remote control, further locating it closer to its call site.