lexical-lsp / lexical

Lexical is a next-generation elixir language server
874 stars 80 forks source link

Impl suggest behaviours #681

Closed scohen closed 6 months ago

scohen commented 6 months ago

Only suggest behaviours in @impl

Currently, we suggest all modules when in an @impl declaration. This is an opportunity for mistakes. This PR changes the suggestion to behaviour modules or modules that are ancestors of behaviour modules.

Fixes #437