Adding a Notifier breaks elixir_sense autocompletions
I have recently added an ash Notifier to my project, and it has caused the elixir_sense plugin to throw an error when trying to show documentation. It is attempting to call
.sections()
on my notifier, but there is no spark DSL for notifiers.
6 Replies
A new release for spark is building, mind trying it out once it releases?
No dice:
Can you try main?
Sure thing 👀
Oh, also, you can do this now:
Those are "notifiers which aren't extensions", and specifying them there will prevent a compile time dependency
So you probably want to do that anyway
but if you could still try main and LMK that would be great 😆
That has fixed it, thank you! I wasn't aware of
simple_notifiers
, will try it out.